Source code: jpicedt/format/pstricks/parser/StarExpression.java
1 /*
2 StarExpression.java - March 28, 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.parser;
31
32 import jpicedt.graphic.io.parser.*;
33 import jpicedt.graphic.model.*;
34
35 /**
36 * Handles (usually optional) "*" after \\psframebox,\\pspolygon,... by setting FILL_STYLE to SOLID.
37 * <p>
38 * Note : this expression is NOT implemented as an OptionalExpression !
39 * @author $Author: reynal $
40 * @version $Id: StarExpression.java,v 1.2 2002/08/05 16:44:10 reynal Exp $
41 */
42 public class StarExpression extends LiteralExpression implements ExpressionConstants, PicObjectConstants {
43
44 private Pool pl;
45
46 public StarExpression(Pool pl){
47 super("*");
48 this.pl = pl;
49 }
50
51 public void action(ParserEvent e){
52 if (DEBUG) System.out.println(e);
53 pl.currentObj.setAttribute(FILL_STYLE,SOLID);
54 }
55 }