001: /* Generated By:JavaCC: Do not edit this line. JavaParserConstants.java */
002: package japa.parser;
003:
004: public interface JavaParserConstants {
005:
006: int EOF = 0;
007: int SINGLE_LINE_COMMENT = 6;
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 LONG_LITERAL = 65;
064: int INTEGER_LITERAL = 66;
065: int DECIMAL_LITERAL = 67;
066: int HEX_LITERAL = 68;
067: int OCTAL_LITERAL = 69;
068: int FLOATING_POINT_LITERAL = 70;
069: int DECIMAL_FLOATING_POINT_LITERAL = 71;
070: int DECIMAL_EXPONENT = 72;
071: int HEXADECIMAL_FLOATING_POINT_LITERAL = 73;
072: int HEXADECIMAL_EXPONENT = 74;
073: int CHARACTER_LITERAL = 75;
074: int STRING_LITERAL = 76;
075: int IDENTIFIER = 77;
076: int LETTER = 78;
077: int PART_LETTER = 79;
078: int LPAREN = 80;
079: int RPAREN = 81;
080: int LBRACE = 82;
081: int RBRACE = 83;
082: int LBRACKET = 84;
083: int RBRACKET = 85;
084: int SEMICOLON = 86;
085: int COMMA = 87;
086: int DOT = 88;
087: int AT = 89;
088: int ASSIGN = 90;
089: int LT = 91;
090: int BANG = 92;
091: int TILDE = 93;
092: int HOOK = 94;
093: int COLON = 95;
094: int EQ = 96;
095: int LE = 97;
096: int GE = 98;
097: int NE = 99;
098: int SC_OR = 100;
099: int SC_AND = 101;
100: int INCR = 102;
101: int DECR = 103;
102: int PLUS = 104;
103: int MINUS = 105;
104: int STAR = 106;
105: int SLASH = 107;
106: int BIT_AND = 108;
107: int BIT_OR = 109;
108: int XOR = 110;
109: int REM = 111;
110: int LSHIFT = 112;
111: int PLUSASSIGN = 113;
112: int MINUSASSIGN = 114;
113: int STARASSIGN = 115;
114: int SLASHASSIGN = 116;
115: int ANDASSIGN = 117;
116: int ORASSIGN = 118;
117: int XORASSIGN = 119;
118: int REMASSIGN = 120;
119: int LSHIFTASSIGN = 121;
120: int RSIGNEDSHIFTASSIGN = 122;
121: int RUNSIGNEDSHIFTASSIGN = 123;
122: int ELLIPSIS = 124;
123: int RUNSIGNEDSHIFT = 125;
124: int RSIGNEDSHIFT = 126;
125: int GT = 127;
126:
127: int DEFAULT = 0;
128: int IN_FORMAL_COMMENT = 1;
129: int IN_MULTI_LINE_COMMENT = 2;
130:
131: String[] tokenImage = { "<EOF>", "\" \"", "\"\\t\"", "\"\\n\"",
132: "\"\\r\"", "\"\\f\"", "<SINGLE_LINE_COMMENT>",
133: "<token of kind 7>", "\"/*\"", "\"*/\"", "\"*/\"",
134: "<token of kind 11>", "\"abstract\"", "\"assert\"",
135: "\"boolean\"", "\"break\"", "\"byte\"", "\"case\"",
136: "\"catch\"", "\"char\"", "\"class\"", "\"const\"",
137: "\"continue\"", "\"default\"", "\"do\"", "\"double\"",
138: "\"else\"", "\"enum\"", "\"extends\"", "\"false\"",
139: "\"final\"", "\"finally\"", "\"float\"", "\"for\"",
140: "\"goto\"", "\"if\"", "\"implements\"", "\"import\"",
141: "\"instanceof\"", "\"int\"", "\"interface\"", "\"long\"",
142: "\"native\"", "\"new\"", "\"null\"", "\"package\"",
143: "\"private\"", "\"protected\"", "\"public\"", "\"return\"",
144: "\"short\"", "\"static\"", "\"strictfp\"", "\"super\"",
145: "\"switch\"", "\"synchronized\"", "\"this\"", "\"throw\"",
146: "\"throws\"", "\"transient\"", "\"true\"", "\"try\"",
147: "\"void\"", "\"volatile\"", "\"while\"", "<LONG_LITERAL>",
148: "<INTEGER_LITERAL>", "<DECIMAL_LITERAL>", "<HEX_LITERAL>",
149: "<OCTAL_LITERAL>", "<FLOATING_POINT_LITERAL>",
150: "<DECIMAL_FLOATING_POINT_LITERAL>", "<DECIMAL_EXPONENT>",
151: "<HEXADECIMAL_FLOATING_POINT_LITERAL>",
152: "<HEXADECIMAL_EXPONENT>", "<CHARACTER_LITERAL>",
153: "<STRING_LITERAL>", "<IDENTIFIER>", "<LETTER>",
154: "<PART_LETTER>", "\"(\"", "\")\"", "\"{\"", "\"}\"",
155: "\"[\"", "\"]\"", "\";\"", "\",\"", "\".\"", "\"@\"",
156: "\"=\"", "\"<\"", "\"!\"", "\"~\"", "\"?\"", "\":\"",
157: "\"==\"", "\"<=\"", "\">=\"", "\"!=\"", "\"||\"", "\"&&\"",
158: "\"++\"", "\"--\"", "\"+\"", "\"-\"", "\"*\"", "\"/\"",
159: "\"&\"", "\"|\"", "\"^\"", "\"%\"", "\"<<\"", "\"+=\"",
160: "\"-=\"", "\"*=\"", "\"/=\"", "\"&=\"", "\"|=\"", "\"^=\"",
161: "\"%=\"", "\"<<=\"", "\">>=\"", "\">>>=\"", "\"...\"",
162: "\">>>\"", "\">>\"", "\">\"", "\"\\u001a\"", };
163:
164: }
|