001    package jtb;
002    /* Generated By:JavaCC: Do not edit this line. JavaParserConstants.java */
003    public interface JavaParserConstants {
004    
005      int EOF = 0;
006      int SINGLE_LINE_COMMENT = 9;
007      int FORMAL_COMMENT = 10;
008      int MULTI_LINE_COMMENT = 11;
009      int ABSTRACT = 13;
010      int ASSERT = 14;
011      int BOOLEAN = 15;
012      int BREAK = 16;
013      int BYTE = 17;
014      int CASE = 18;
015      int CATCH = 19;
016      int CHAR = 20;
017      int CLASS = 21;
018      int CONST = 22;
019      int CONTINUE = 23;
020      int _DEFAULT = 24;
021      int DO = 25;
022      int DOUBLE = 26;
023      int ELSE = 27;
024      int ENUM = 28;
025      int EXTENDS = 29;
026      int FALSE = 30;
027      int FINAL = 31;
028      int FINALLY = 32;
029      int FLOAT = 33;
030      int FOR = 34;
031      int GOTO = 35;
032      int IF = 36;
033      int IMPLEMENTS = 37;
034      int IMPORT = 38;
035      int INSTANCEOF = 39;
036      int INT = 40;
037      int INTERFACE = 41;
038      int LONG = 42;
039      int NATIVE = 43;
040      int NEW = 44;
041      int NULL = 45;
042      int PACKAGE = 46;
043      int PRIVATE = 47;
044      int PROTECTED = 48;
045      int PUBLIC = 49;
046      int RETURN = 50;
047      int SHORT = 51;
048      int STATIC = 52;
049      int STRICTFP = 53;
050      int SUPER = 54;
051      int SWITCH = 55;
052      int SYNCHRONIZED = 56;
053      int THIS = 57;
054      int THROW = 58;
055      int THROWS = 59;
056      int TRANSIENT = 60;
057      int TRUE = 61;
058      int TRY = 62;
059      int VOID = 63;
060      int VOLATILE = 64;
061      int WHILE = 65;
062      int INTEGER_LITERAL = 66;
063      int DECIMAL_LITERAL = 67;
064      int HEX_LITERAL = 68;
065      int OCTAL_LITERAL = 69;
066      int FLOATING_POINT_LITERAL = 70;
067      int EXPONENT = 71;
068      int CHARACTER_LITERAL = 72;
069      int STRING_LITERAL = 73;
070      int IDENTIFIER = 74;
071      int LETTER = 75;
072      int PART_LETTER = 76;
073      int LPAREN = 77;
074      int RPAREN = 78;
075      int LBRACE = 79;
076      int RBRACE = 80;
077      int LBRACKET = 81;
078      int RBRACKET = 82;
079      int SEMICOLON = 83;
080      int COMMA = 84;
081      int DOT = 85;
082      int AT = 86;
083      int ASSIGN = 87;
084      int LT = 88;
085      int BANG = 89;
086      int TILDE = 90;
087      int HOOK = 91;
088      int COLON = 92;
089      int EQ = 93;
090      int LE = 94;
091      int GE = 95;
092      int NE = 96;
093      int SC_OR = 97;
094      int SC_AND = 98;
095      int INCR = 99;
096      int DECR = 100;
097      int PLUS = 101;
098      int MINUS = 102;
099      int STAR = 103;
100      int SLASH = 104;
101      int BIT_AND = 105;
102      int BIT_OR = 106;
103      int XOR = 107;
104      int REM = 108;
105      int LSHIFT = 109;
106      int PLUSASSIGN = 110;
107      int MINUSASSIGN = 111;
108      int STARASSIGN = 112;
109      int SLASHASSIGN = 113;
110      int ANDASSIGN = 114;
111      int ORASSIGN = 115;
112      int XORASSIGN = 116;
113      int REMASSIGN = 117;
114      int LSHIFTASSIGN = 118;
115      int RSIGNEDSHIFTASSIGN = 119;
116      int RUNSIGNEDSHIFTASSIGN = 120;
117      int ELLIPSIS = 121;
118      int RUNSIGNEDSHIFT = 122;
119      int RSIGNEDSHIFT = 123;
120      int GT = 124;
121    
122      int DEFAULT = 0;
123      int IN_SINGLE_LINE_COMMENT = 1;
124      int IN_FORMAL_COMMENT = 2;
125      int IN_MULTI_LINE_COMMENT = 3;
126    
127      String[] tokenImage = {
128        "<EOF>",
129        "\" \"",
130        "\"\\t\"",
131        "\"\\n\"",
132        "\"\\r\"",
133        "\"\\f\"",
134        "\"//\"",
135        "<token of kind 7>",
136        "\"/*\"",
137        "<SINGLE_LINE_COMMENT>",
138        "\"*/\"",
139        "\"*/\"",
140        "<token of kind 12>",
141        "\"abstract\"",
142        "\"assert\"",
143        "\"boolean\"",
144        "\"break\"",
145        "\"byte\"",
146        "\"case\"",
147        "\"catch\"",
148        "\"char\"",
149        "\"class\"",
150        "\"const\"",
151        "\"continue\"",
152        "\"default\"",
153        "\"do\"",
154        "\"double\"",
155        "\"else\"",
156        "\"enum\"",
157        "\"extends\"",
158        "\"false\"",
159        "\"final\"",
160        "\"finally\"",
161        "\"float\"",
162        "\"for\"",
163        "\"goto\"",
164        "\"if\"",
165        "\"implements\"",
166        "\"import\"",
167        "\"instanceof\"",
168        "\"int\"",
169        "\"interface\"",
170        "\"long\"",
171        "\"native\"",
172        "\"new\"",
173        "\"null\"",
174        "\"package\"",
175        "\"private\"",
176        "\"protected\"",
177        "\"public\"",
178        "\"return\"",
179        "\"short\"",
180        "\"static\"",
181        "\"strictfp\"",
182        "\"super\"",
183        "\"switch\"",
184        "\"synchronized\"",
185        "\"this\"",
186        "\"throw\"",
187        "\"throws\"",
188        "\"transient\"",
189        "\"true\"",
190        "\"try\"",
191        "\"void\"",
192        "\"volatile\"",
193        "\"while\"",
194        "<INTEGER_LITERAL>",
195        "<DECIMAL_LITERAL>",
196        "<HEX_LITERAL>",
197        "<OCTAL_LITERAL>",
198        "<FLOATING_POINT_LITERAL>",
199        "<EXPONENT>",
200        "<CHARACTER_LITERAL>",
201        "<STRING_LITERAL>",
202        "<IDENTIFIER>",
203        "<LETTER>",
204        "<PART_LETTER>",
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        "\">>>\"",
251        "\">>\"",
252        "\">\"",
253      };
254    
255    }