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