View Javadoc

1   /* Generated By:JJTree&JavaCC: Do not edit this line. NodeParserConstants.java */
2   package xjavadoc;
3   
4   public interface NodeParserConstants {
5   
6     int EOF = 0;
7     int SINGLE_LINE_COMMENT = 9;
8     int FORMAL_COMMENT = 10;
9     int MULTI_LINE_COMMENT = 11;
10    int ABSTRACT = 13;
11    int BOOLEAN = 14;
12    int BREAK = 15;
13    int BYTE = 16;
14    int CASE = 17;
15    int CATCH = 18;
16    int CHAR = 19;
17    int CLASS = 20;
18    int CONST = 21;
19    int CONTINUE = 22;
20    int _DEFAULT = 23;
21    int DO = 24;
22    int DOUBLE = 25;
23    int ELSE = 26;
24    int EXTENDS = 27;
25    int FALSE = 28;
26    int FINAL = 29;
27    int FINALLY = 30;
28    int FLOAT = 31;
29    int FOR = 32;
30    int GOTO = 33;
31    int IF = 34;
32    int IMPLEMENTS = 35;
33    int IMPORT = 36;
34    int INSTANCEOF = 37;
35    int INT = 38;
36    int INTERFACE = 39;
37    int LONG = 40;
38    int NATIVE = 41;
39    int NEW = 42;
40    int NULL = 43;
41    int PACKAGE = 44;
42    int PRIVATE = 45;
43    int PROTECTED = 46;
44    int PUBLIC = 47;
45    int RETURN = 48;
46    int SHORT = 49;
47    int STATIC = 50;
48    int SUPER = 51;
49    int SWITCH = 52;
50    int SYNCHRONIZED = 53;
51    int THIS = 54;
52    int THROW = 55;
53    int THROWS = 56;
54    int TRANSIENT = 57;
55    int TRUE = 58;
56    int TRY = 59;
57    int VOID = 60;
58    int VOLATILE = 61;
59    int WHILE = 62;
60    int STRICTFP = 63;
61    int ASSERT = 64;
62    int INTEGER_LITERAL = 65;
63    int DECIMAL_LITERAL = 66;
64    int HEX_LITERAL = 67;
65    int OCTAL_LITERAL = 68;
66    int FLOATING_POINT_LITERAL = 69;
67    int EXPONENT = 70;
68    int CHARACTER_LITERAL = 71;
69    int STRING_LITERAL = 72;
70    int IDENTIFIER = 73;
71    int LETTER = 74;
72    int DIGIT = 75;
73    int LPAREN = 76;
74    int RPAREN = 77;
75    int LBRACE = 78;
76    int RBRACE = 79;
77    int LBRACKET = 80;
78    int RBRACKET = 81;
79    int SEMICOLON = 82;
80    int COMMA = 83;
81    int DOT = 84;
82    int ASSIGN = 85;
83    int GT = 86;
84    int LT = 87;
85    int BANG = 88;
86    int TILDE = 89;
87    int HOOK = 90;
88    int COLON = 91;
89    int EQ = 92;
90    int LE = 93;
91    int GE = 94;
92    int NE = 95;
93    int SC_OR = 96;
94    int SC_AND = 97;
95    int INCR = 98;
96    int DECR = 99;
97    int PLUS = 100;
98    int MINUS = 101;
99    int STAR = 102;
100   int SLASH = 103;
101   int BIT_AND = 104;
102   int BIT_OR = 105;
103   int XOR = 106;
104   int REM = 107;
105   int LSHIFT = 108;
106   int RSIGNEDSHIFT = 109;
107   int RUNSIGNEDSHIFT = 110;
108   int PLUSASSIGN = 111;
109   int MINUSASSIGN = 112;
110   int STARASSIGN = 113;
111   int SLASHASSIGN = 114;
112   int ANDASSIGN = 115;
113   int ORASSIGN = 116;
114   int XORASSIGN = 117;
115   int REMASSIGN = 118;
116   int LSHIFTASSIGN = 119;
117   int RSIGNEDSHIFTASSIGN = 120;
118   int RUNSIGNEDSHIFTASSIGN = 121;
119 
120   int DEFAULT = 0;
121   int IN_SINGLE_LINE_COMMENT = 1;
122   int IN_FORMAL_COMMENT = 2;
123   int IN_MULTI_LINE_COMMENT = 3;
124 
125   String[] tokenImage = {
126     "<EOF>",
127     "\" \"",
128     "\"//t\"",
129     "\"//n\"",
130     "\"//r\"",
131     "\"//f\"",
132     "\"//\"",
133     "<token of kind 7>",
134     "\"/*\"",
135     "<SINGLE_LINE_COMMENT>",
136     "\"*/\"",
137     "\"*/\"",
138     "<token of kind 12>",
139     "\"abstract\"",
140     "\"boolean\"",
141     "\"break\"",
142     "\"byte\"",
143     "\"case\"",
144     "\"catch\"",
145     "\"char\"",
146     "\"class\"",
147     "\"const\"",
148     "\"continue\"",
149     "\"default\"",
150     "\"do\"",
151     "\"double\"",
152     "\"else\"",
153     "\"extends\"",
154     "\"false\"",
155     "\"final\"",
156     "\"finally\"",
157     "\"float\"",
158     "\"for\"",
159     "\"goto\"",
160     "\"if\"",
161     "\"implements\"",
162     "\"import\"",
163     "\"instanceof\"",
164     "\"int\"",
165     "\"interface\"",
166     "\"long\"",
167     "\"native\"",
168     "\"new\"",
169     "\"null\"",
170     "\"package\"",
171     "\"private\"",
172     "\"protected\"",
173     "\"public\"",
174     "\"return\"",
175     "\"short\"",
176     "\"static\"",
177     "\"super\"",
178     "\"switch\"",
179     "\"synchronized\"",
180     "\"this\"",
181     "\"throw\"",
182     "\"throws\"",
183     "\"transient\"",
184     "\"true\"",
185     "\"try\"",
186     "\"void\"",
187     "\"volatile\"",
188     "\"while\"",
189     "\"strictfp\"",
190     "\"assert\"",
191     "<INTEGER_LITERAL>",
192     "<DECIMAL_LITERAL>",
193     "<HEX_LITERAL>",
194     "<OCTAL_LITERAL>",
195     "<FLOATING_POINT_LITERAL>",
196     "<EXPONENT>",
197     "<CHARACTER_LITERAL>",
198     "<STRING_LITERAL>",
199     "<IDENTIFIER>",
200     "<LETTER>",
201     "<DIGIT>",
202     "\"(\"",
203     "\")\"",
204     "\"{\"",
205     "\"}\"",
206     "\"[\"",
207     "\"]\"",
208     "\";\"",
209     "\",\"",
210     "\".\"",
211     "\"=\"",
212     "\">\"",
213     "\"<\"",
214     "\"!\"",
215     "\"~\"",
216     "\"?\"",
217     "\":\"",
218     "\"==\"",
219     "\"<=\"",
220     "\">=\"",
221     "\"!=\"",
222     "\"||\"",
223     "\"&&\"",
224     "\"++\"",
225     "\"--\"",
226     "\"+\"",
227     "\"-\"",
228     "\"*\"",
229     "\"/\"",
230     "\"&\"",
231     "\"|\"",
232     "\"^\"",
233     "\"%\"",
234     "\"<<\"",
235     "\">>\"",
236     "\">>>\"",
237     "\"+=\"",
238     "\"-=\"",
239     "\"*=\"",
240     "\"/=\"",
241     "\"&=\"",
242     "\"|=\"",
243     "\"^=\"",
244     "\"%=\"",
245     "\"<<=\"",
246     "\">>=\"",
247     "\">>>=\"",
248   };
249 
250 }