Revision 36624 trunk/extensions/extSymbology/src/org/gvsig/symbology/fmap/rendering/filter/parser/ExpressionParserConstants.java

View differences:

ExpressionParserConstants.java
1
/* Generated By:JavaCC: Do not edit this line. ExpressionParserConstants.java */

1
/* Generated By:JavaCC: Do not edit this line. ExpressionParserConstants.java */
2 2
/* gvSIG. Sistema de Informaci�n Geogr�fica de la Generalitat Valenciana
3 3
 *
4 4
 * Copyright (C) 2004 IVER T.I. and Generalitat Valenciana.
......
38 38
 *
39 39
 *   +34 963163400
40 40
 *   dac@iver.es
41
 */
42
package org.gvsig.symbology.fmap.rendering.filter.parser;
43

  
44
public interface ExpressionParserConstants {
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
}
41
 */
42
package org.gvsig.symbology.fmap.rendering.filter.parser;
43

  
44
public interface ExpressionParserConstants {
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
}

Also available in: Unified diff