Statistics
| Revision:

svn-gvsig-desktop / trunk / extensions / extSymbology / src / org / gvsig / symbology / fmap / labeling / parse / LabelExpressionParserConstants.java @ 36624

History | View | Annotate | Download (2.63 KB)

1
/* Generated By:JavaCC: Do not edit this line. LabelExpressionParserConstants.java */
2
/* gvSIG. Sistema de Información Geográfica de la Generalitat Valenciana
3
 *
4
 * Copyright (C) 2004 IVER T.I. and Generalitat Valenciana.
5
 *
6
 * This program is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU General Public License
8
 * as published by the Free Software Foundation; either version 2
9
 * of the License, or (at your option) any later version.
10
 *
11
 * This program is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 * GNU General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU General Public License
17
 * along with this program; if not, write to the Free Software
18
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
19
 *
20
 * For more information, contact:
21
 *
22
 *  Generalitat Valenciana
23
 *   Conselleria d'Infraestructures i Transport
24
 *   Av. Blasco Ibáñez, 50
25
 *   46010 VALENCIA
26
 *   SPAIN
27
 *
28
 *      +34 963862235
29
 *   gvsig@gva.es
30
 *      www.gvsig.gva.es
31
 *
32
 *    or
33
 *
34
 *   IVER T.I. S.A
35
 *   Salamanca 50
36
 *   46005 Valencia
37
 *   Spain
38
 *
39
 *   +34 963163400
40
 *   dac@iver.es
41
 */
42
package org.gvsig.symbology.fmap.labeling.parse;
43

    
44
public interface LabelExpressionParserConstants {
45

    
46
  int EOF = 0;
47
  int PLUS = 5;
48
  int MINUS = 6;
49
  int MULTIPLY = 7;
50
  int DIVIDE = 8;
51
  int GT = 9;
52
  int LT = 10;
53
  int NOT = 11;
54
  int EQ = 12;
55
  int LE = 13;
56
  int GE = 14;
57
  int NE = 15;
58
  int OR = 16;
59
  int AND = 17;
60
  int DOT = 18;
61
  int OPEN_SQ_BRACKETS = 19;
62
  int CLOSE_SQ_BRACKETS = 20;
63
  int OPEN_PARENTHESIS = 21;
64
  int CLOSE_PARENTHESIS = 22;
65
  int DOUBLE_QUOTE = 23;
66
  int COMMA = 24;
67
  int EOFIELD = 25;
68
  int EOEXPR = 26;
69
  int BOOLEAN = 27;
70
  int NULL = 28;
71
  int IDENTIFIER = 29;
72
  int LETTER = 30;
73
  int DIGIT = 31;
74
  int INTEGER = 32;
75
  int FLOATING_POINT = 33;
76
  int EXPONENT = 34;
77
  int STRING = 35;
78
  int CHAR_STRING = 36;
79

    
80
  int DEFAULT = 0;
81

    
82
  String[] tokenImage = {
83
    "<EOF>",
84
    "\" \"",
85
    "\"\\r\"",
86
    "\"\\t\"",
87
    "\"\\n\"",
88
    "\"+\"",
89
    "\"-\"",
90
    "\"*\"",
91
    "\"/\"",
92
    "\">\"",
93
    "\"<\"",
94
    "\"!\"",
95
    "\"==\"",
96
    "\"<=\"",
97
    "\">=\"",
98
    "\"!=\"",
99
    "\"||\"",
100
    "\"&&\"",
101
    "\".\"",
102
    "\"[\"",
103
    "\"]\"",
104
    "\"(\"",
105
    "\")\"",
106
    "\"\\\"\"",
107
    "\",\"",
108
    "\":\"",
109
    "\";\"",
110
    "<BOOLEAN>",
111
    "\"null\"",
112
    "<IDENTIFIER>",
113
    "<LETTER>",
114
    "<DIGIT>",
115
    "<INTEGER>",
116
    "<FLOATING_POINT>",
117
    "<EXPONENT>",
118
    "<STRING>",
119
    "<CHAR_STRING>",
120
  };
121

    
122
}