KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > tools > example > debug > expr > ExpressionParserConstants


1 /*
2  * @(#)ExpressionParserConstants.java 1.8 05/11/17
3  *
4  * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
5  * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
6  */

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