KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > modules > debugger > jpda > expr > JavaParserConstants


1 /*
2  * The contents of this file are subject to the terms of the Common Development
3  * and Distribution License (the License). You may not use this file except in
4  * compliance with the License.
5  *
6  * You can obtain a copy of the License at http://www.netbeans.org/cddl.html
7  * or http://www.netbeans.org/cddl.txt.
8  *
9  * When distributing Covered Code, include this CDDL Header Notice in each file
10  * and include the License file at http://www.netbeans.org/cddl.txt.
11  * If applicable, add the following below the CDDL Header, with the fields
12  * enclosed by brackets [] replaced by your own identifying information:
13  * "Portions Copyrighted [year] [name of copyright owner]"
14  *
15  * The Original Software is NetBeans. The Initial Developer of the Original
16  * Software is Sun Microsystems, Inc. Portions Copyright 1997-2006 Sun
17  * Microsystems, Inc. All Rights Reserved.
18  */

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