Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: jpicedt/format/pstricks/PstricksContentType.java


1   /*
2    ContentType.java - February 16, 2002 - jPicEdt 1.3.2, a picture editor for LaTeX.
3    Copyright (C) 1999-2002 Sylvain Reynal
4   
5    Département de Physique
6    Ecole Nationale Supérieure de l'Electronique et de ses Applications (ENSEA)
7    6, avenue du Ponceau
8    F-95014 CERGY CEDEX
9   
10   Tel : +33 130 736 245
11   Fax : +33 130 736 667
12   e-mail : reynal@ensea.fr
13   jPicEdt web page : http://www.jpicedt.org/
14    
15   This program is free software; you can redistribute it and/or
16   modify it under the terms of the GNU General Public License
17   as published by the Free Software Foundation; either version 2
18   of the License, or any later version.
19    
20   This program is distributed in the hope that it will be useful,
21   but WITHOUT ANY WARRANTY; without even the implied warranty of
22   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23   GNU General Public License for more details.
24    
25   You should have received a copy of the GNU General Public License
26   along with this program; if not, write to the Free Software
27   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
28   */
29  
30  package jpicedt.format.pstricks;
31  
32  import jpicedt.graphic.toolkit.EditorKit;
33  import jpicedt.graphic.io.formatter.FormatterFactory;
34  import jpicedt.graphic.ContentType;
35  
36  import java.util.*;
37  
38  /**
39   * ContentType for the Pstricks format.
40   * @author $Author: reynal $
41   * @version $Id: PstricksContentType.java,v 1.2 2002/08/05 16:44:10 reynal Exp $ 
42   */
43  public class PstricksContentType implements ContentType {
44  
45    protected String name, mime;
46    
47    /**
48     * @return the presentation name of this content-type
49     */
50    public String getPresentationName(){
51      return "PsTricks";
52    }
53  
54    /**
55     * @return the MIME type for this content-type, if there's one registered.
56     */
57    public String getMime(){
58      return "?/?";
59    }
60  
61    /**
62     * creates an EditorKit that's suited for this content-type
63     * default implementation returns null.
64     */
65    public EditorKit createEditorKit(){
66      return new EditorKit(new PstricksViewFactory(),new PstricksFormatter());
67    }
68  
69    /**
70     * creates a FormatterFactory that's suited for this content-type
71     * default implementation returns null.
72     */
73    public FormatterFactory createFormatter(){
74      return new PstricksFormatter();
75    }
76    
77    /**
78     * Configure the EditorKit and the FormatterFactory returned by the factory methods,
79     * from the given Properties
80     */
81    public void configure(Properties p){
82      PstricksFormatter.configure(p);
83    }
84    
85  }