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