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