KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > el > parser > ELParserConstants


1 /* Generated By:JJTree&JavaCC: Do not edit this line. ELParserConstants.java */
2 package org.apache.el.parser;
3
4 public interface ELParserConstants {
5
6     int EOF = 0;
7
8     int LITERAL_EXPRESSION = 1;
9
10     int START_DYNAMIC_EXPRESSION = 2;
11
12     int START_DEFERRED_EXPRESSION = 3;
13
14     int INTEGER_LITERAL = 9;
15
16     int FLOATING_POINT_LITERAL = 10;
17
18     int EXPONENT = 11;
19
20     int STRING_LITERAL = 12;
21
22     int BADLY_ESCAPED_STRING_LITERAL = 13;
23
24     int TRUE = 14;
25
26     int FALSE = 15;
27
28     int NULL = 16;
29
30     int END_EXPRESSION = 17;
31
32     int DOT = 18;
33
34     int LPAREN = 19;
35
36     int RPAREN = 20;
37
38     int LBRACK = 21;
39
40     int RBRACK = 22;
41
42     int COLON = 23;
43
44     int COMMA = 24;
45
46     int GT0 = 25;
47
48     int GT1 = 26;
49
50     int LT0 = 27;
51
52     int LT1 = 28;
53
54     int GE0 = 29;
55
56     int GE1 = 30;
57
58     int LE0 = 31;
59
60     int LE1 = 32;
61
62     int EQ0 = 33;
63
64     int EQ1 = 34;
65
66     int NE0 = 35;
67
68     int NE1 = 36;
69
70     int NOT0 = 37;
71
72     int NOT1 = 38;
73
74     int AND0 = 39;
75
76     int AND1 = 40;
77
78     int OR0 = 41;
79
80     int OR1 = 42;
81
82     int EMPTY = 43;
83
84     int INSTANCEOF = 44;
85
86     int MULT = 45;
87
88     int PLUS = 46;
89
90     int MINUS = 47;
91
92     int QUESTIONMARK = 48;
93
94     int DIV0 = 49;
95
96     int DIV1 = 50;
97
98     int MOD0 = 51;
99
100     int MOD1 = 52;
101
102     int IDENTIFIER = 53;
103
104     int NAMESPACE = 54;
105
106     int FUNCTIONSUFFIX = 55;
107
108     int IMPL_OBJ_START = 56;
109
110     int LETTER = 57;
111
112     int DIGIT = 58;
113
114     int ILLEGAL_CHARACTER = 59;
115
116     int DEFAULT = 0;
117
118     int IN_EXPRESSION = 1;
119
120     String JavaDoc[] tokenImage = { "<EOF>", "<LITERAL_EXPRESSION>", "\"${\"",
121             "\"#{\"", "\"\\\\\"", "\" \"", "\"\\t\"", "\"\\n\"", "\"\\r\"",
122             "<INTEGER_LITERAL>", "<FLOATING_POINT_LITERAL>", "<EXPONENT>",
123             "<STRING_LITERAL>", "<BADLY_ESCAPED_STRING_LITERAL>", "\"true\"",
124             "\"false\"", "\"null\"", "\"}\"", "\".\"", "\"(\"", "\")\"",
125             "\"[\"", "\"]\"", "\":\"", "\",\"", "\">\"", "\"gt\"", "\"<\"",
126             "\"lt\"", "\">=\"", "\"ge\"", "\"<=\"", "\"le\"", "\"==\"",
127             "\"eq\"", "\"!=\"", "\"ne\"", "\"!\"", "\"not\"", "\"&&\"",
128             "\"and\"", "\"||\"", "\"or\"", "\"empty\"", "\"instanceof\"",
129             "\"*\"", "\"+\"", "\"-\"", "\"?\"", "\"/\"", "\"div\"", "\"%\"",
130             "\"mod\"", "<IDENTIFIER>", "<NAMESPACE>", "<FUNCTIONSUFFIX>",
131             "\"#\"", "<LETTER>", "<DIGIT>", "<ILLEGAL_CHARACTER>", };
132
133 }
134
Popular Tags