1 |
| |
2 |
| |
3 |
| package org.drools.semantics.java.parser; |
4 |
| |
5 |
| public interface JavaTokenTypes { |
6 |
| int EOF = 1; |
7 |
| int NULL_TREE_LOOKAHEAD = 3; |
8 |
| int BLOCK = 4; |
9 |
| int MODIFIERS = 5; |
10 |
| int OBJBLOCK = 6; |
11 |
| int SLIST = 7; |
12 |
| int CTOR_DEF = 8; |
13 |
| int METHOD_DEF = 9; |
14 |
| int VARIABLE_DEF = 10; |
15 |
| int INSTANCE_INIT = 11; |
16 |
| int STATIC_INIT = 12; |
17 |
| int TYPE = 13; |
18 |
| int CLASS_DEF = 14; |
19 |
| int INTERFACE_DEF = 15; |
20 |
| int PACKAGE_DEF = 16; |
21 |
| int ARRAY_DECLARATOR = 17; |
22 |
| int EXTENDS_CLAUSE = 18; |
23 |
| int IMPLEMENTS_CLAUSE = 19; |
24 |
| int PARAMETERS = 20; |
25 |
| int PARAMETER_DEF = 21; |
26 |
| int LABELED_STAT = 22; |
27 |
| int TYPECAST = 23; |
28 |
| int INDEX_OP = 24; |
29 |
| int POST_INC = 25; |
30 |
| int POST_DEC = 26; |
31 |
| int METHOD_CALL = 27; |
32 |
| int EXPR = 28; |
33 |
| int ARRAY_INIT = 29; |
34 |
| int IMPORT = 30; |
35 |
| int UNARY_MINUS = 31; |
36 |
| int UNARY_PLUS = 32; |
37 |
| int CASE_GROUP = 33; |
38 |
| int ELIST = 34; |
39 |
| int FOR_INIT = 35; |
40 |
| int FOR_CONDITION = 36; |
41 |
| int FOR_ITERATOR = 37; |
42 |
| int EMPTY_STAT = 38; |
43 |
| int FINAL = 39; |
44 |
| int ABSTRACT = 40; |
45 |
| int STRICTFP = 41; |
46 |
| int SUPER_CTOR_CALL = 42; |
47 |
| int CTOR_CALL = 43; |
48 |
| int RULE_SET = 44; |
49 |
| int RULE = 45; |
50 |
| int WHEN = 46; |
51 |
| int THEN = 47; |
52 |
| int IDENT = 48; |
53 |
| int LCURLY = 49; |
54 |
| int RCURLY = 50; |
55 |
| int LPAREN = 51; |
56 |
| int RPAREN = 52; |
57 |
| int SEMI = 53; |
58 |
| int ASSIGN = 54; |
59 |
| int LITERAL_package = 55; |
60 |
| int LITERAL_import = 56; |
61 |
| int LBRACK = 57; |
62 |
| int RBRACK = 58; |
63 |
| int LITERAL_void = 59; |
64 |
| int LITERAL_boolean = 60; |
65 |
| int LITERAL_byte = 61; |
66 |
| int LITERAL_char = 62; |
67 |
| int LITERAL_short = 63; |
68 |
| int LITERAL_int = 64; |
69 |
| int LITERAL_float = 65; |
70 |
| int LITERAL_long = 66; |
71 |
| int LITERAL_double = 67; |
72 |
| int DOT = 68; |
73 |
| int STAR = 69; |
74 |
| int LITERAL_private = 70; |
75 |
| int LITERAL_public = 71; |
76 |
| int LITERAL_protected = 72; |
77 |
| int LITERAL_static = 73; |
78 |
| int LITERAL_transient = 74; |
79 |
| int LITERAL_native = 75; |
80 |
| int LITERAL_threadsafe = 76; |
81 |
| int LITERAL_synchronized = 77; |
82 |
| int LITERAL_volatile = 78; |
83 |
| int LITERAL_class = 79; |
84 |
| int LITERAL_extends = 80; |
85 |
| int LITERAL_interface = 81; |
86 |
| int COMMA = 82; |
87 |
| int LITERAL_implements = 83; |
88 |
| int LITERAL_this = 84; |
89 |
| int LITERAL_super = 85; |
90 |
| int LITERAL_throws = 86; |
91 |
| int COLON = 87; |
92 |
| int LITERAL_if = 88; |
93 |
| int LITERAL_else = 89; |
94 |
| int LITERAL_for = 90; |
95 |
| int LITERAL_while = 91; |
96 |
| int LITERAL_do = 92; |
97 |
| int LITERAL_break = 93; |
98 |
| int LITERAL_continue = 94; |
99 |
| int LITERAL_return = 95; |
100 |
| int LITERAL_switch = 96; |
101 |
| int LITERAL_throw = 97; |
102 |
| int LITERAL_case = 98; |
103 |
| int LITERAL_default = 99; |
104 |
| int LITERAL_try = 100; |
105 |
| int LITERAL_finally = 101; |
106 |
| int LITERAL_catch = 102; |
107 |
| int PLUS_ASSIGN = 103; |
108 |
| int MINUS_ASSIGN = 104; |
109 |
| int STAR_ASSIGN = 105; |
110 |
| int DIV_ASSIGN = 106; |
111 |
| int MOD_ASSIGN = 107; |
112 |
| int SR_ASSIGN = 108; |
113 |
| int BSR_ASSIGN = 109; |
114 |
| int SL_ASSIGN = 110; |
115 |
| int BAND_ASSIGN = 111; |
116 |
| int BXOR_ASSIGN = 112; |
117 |
| int BOR_ASSIGN = 113; |
118 |
| int QUESTION = 114; |
119 |
| int LOR = 115; |
120 |
| int LAND = 116; |
121 |
| int BOR = 117; |
122 |
| int BXOR = 118; |
123 |
| int BAND = 119; |
124 |
| int NOT_EQUAL = 120; |
125 |
| int EQUAL = 121; |
126 |
| int LT = 122; |
127 |
| int GT = 123; |
128 |
| int LE = 124; |
129 |
| int GE = 125; |
130 |
| int LITERAL_instanceof = 126; |
131 |
| int SL = 127; |
132 |
| int SR = 128; |
133 |
| int BSR = 129; |
134 |
| int PLUS = 130; |
135 |
| int MINUS = 131; |
136 |
| int DIV = 132; |
137 |
| int MOD = 133; |
138 |
| int INC = 134; |
139 |
| int DEC = 135; |
140 |
| int BNOT = 136; |
141 |
| int LNOT = 137; |
142 |
| int LITERAL_true = 138; |
143 |
| int LITERAL_false = 139; |
144 |
| int LITERAL_null = 140; |
145 |
| int LITERAL_new = 141; |
146 |
| int NUM_INT = 142; |
147 |
| int CHAR_LITERAL = 143; |
148 |
| int STRING_LITERAL = 144; |
149 |
| int NUM_FLOAT = 145; |
150 |
| int NUM_LONG = 146; |
151 |
| int NUM_DOUBLE = 147; |
152 |
| int WS = 148; |
153 |
| int SL_COMMENT = 149; |
154 |
| int ML_COMMENT = 150; |
155 |
| int ESC = 151; |
156 |
| int HEX_DIGIT = 152; |
157 |
| int VOCAB = 153; |
158 |
| int EXPONENT = 154; |
159 |
| int FLOAT_SUFFIX = 155; |
160 |
| } |