1 2 3 25 26 package net.sourceforge.cobertura.javancss; 27 28 public interface JavaParserConstants 29 { 30 31 int EOF = 0; 32 int SINGLE_LINE_COMMENT = 8; 33 int SINGLE_LINE_COMMENT2 = 9; 34 int END_OF_LINE_MULTI = 10; 35 int MULTI_LINE_COMMENT = 11; 36 int ABSTRACT = 13; 37 int ASSERT = 14; 38 int BOOLEAN = 15; 39 int BREAK = 16; 40 int BYTE = 17; 41 int CASE = 18; 42 int CATCH = 19; 43 int CHAR = 20; 44 int CLASS = 21; 45 int CONST = 22; 46 int CONTINUE = 23; 47 int _DEFAULT = 24; 48 int DO = 25; 49 int DOUBLE = 26; 50 int ELSE = 27; 51 int EXTENDS = 28; 52 int FALSE = 29; 53 int FINAL = 30; 54 int FINALLY = 31; 55 int FLOAT = 32; 56 int FOR = 33; 57 int GOTO = 34; 58 int IF = 35; 59 int IMPLEMENTS = 36; 60 int IMPORT = 37; 61 int INSTANCEOF = 38; 62 int INT = 39; 63 int INTERFACE = 40; 64 int LONG = 41; 65 int NATIVE = 42; 66 int NEW = 43; 67 int NULL = 44; 68 int PACKAGE = 45; 69 int PRIVATE = 46; 70 int PROTECTED = 47; 71 int PUBLIC = 48; 72 int RETURN = 49; 73 int SHORT = 50; 74 int STATIC = 51; 75 int TESTAAAA = 52; 76 int SUPER = 53; 77 int SWITCH = 54; 78 int SYNCHRONIZED = 55; 79 int THIS = 56; 80 int THROW = 57; 81 int THROWS = 58; 82 int TRANSIENT = 59; 83 int TRUE = 60; 84 int TRY = 61; 85 int VOID = 62; 86 int VOLATILE = 63; 87 int WHILE = 64; 88 int INTEGER_LITERAL = 65; 89 int DECIMAL_LITERAL = 66; 90 int HEX_LITERAL = 67; 91 int OCTAL_LITERAL = 68; 92 int FLOATING_POINT_LITERAL = 69; 93 int EXPONENT = 70; 94 int CHARACTER_LITERAL = 71; 95 int STRING_LITERAL = 72; 96 int IDENTIFIER = 73; 97 int LETTER = 74; 98 int DIGIT = 75; 99 int LPAREN = 76; 100 int RPAREN = 77; 101 int LBRACE = 78; 102 int RBRACE = 79; 103 int LBRACKET = 80; 104 int RBRACKET = 81; 105 int SEMICOLON = 82; 106 int COMMA = 83; 107 int DOT = 84; 108 int ASSIGN = 85; 109 int GT = 86; 110 int LT = 87; 111 int BANG = 88; 112 int TILDE = 89; 113 int HOOK = 90; 114 int COLON = 91; 115 int EQ = 92; 116 int LE = 93; 117 int GE = 94; 118 int NE = 95; 119 int SC_OR = 96; 120 int SC_AND = 97; 121 int INCR = 98; 122 int DECR = 99; 123 int PLUS = 100; 124 int MINUS = 101; 125 int STAR = 102; 126 int SLASH = 103; 127 int BIT_AND = 104; 128 int BIT_OR = 105; 129 int XOR = 106; 130 int REM = 107; 131 int LSHIFT = 108; 132 int RSIGNEDSHIFT = 109; 133 int RUNSIGNEDSHIFT = 110; 134 int PLUSASSIGN = 111; 135 int MINUSASSIGN = 112; 136 int STARASSIGN = 113; 137 int SLASHASSIGN = 114; 138 int ANDASSIGN = 115; 139 int ORASSIGN = 116; 140 int XORASSIGN = 117; 141 int REMASSIGN = 118; 142 int LSHIFTASSIGN = 119; 143 int RSIGNEDSHIFTASSIGN = 120; 144 int RUNSIGNEDSHIFTASSIGN = 121; 145 146 int DEFAULT = 0; 147 int IN_SINGLE_LINE_COMMENT = 1; 148 int IN_MULTI_LINE_COMMENT = 2; 149 150 String [] tokenImage = { "<EOF>", "\" \"", "\"\\t\"", "\"\\n\"", "\"\\r\"", "\"\\f\"", 151 "\"\\u001a\"", "\"/*\"", "\"//\"", "<SINGLE_LINE_COMMENT2>", "<END_OF_LINE_MULTI>", 152 "\"*/\"", "<token of kind 12>", "\"abstract\"", "\"assert\"", "\"boolean\"", 153 "\"break\"", "\"byte\"", "\"case\"", "\"catch\"", "\"char\"", "\"class\"", "\"const\"", 154 "\"continue\"", "\"default\"", "\"do\"", "\"double\"", "\"else\"", "\"extends\"", 155 "\"false\"", "\"final\"", "\"finally\"", "\"float\"", "\"for\"", "\"goto\"", "\"if\"", 156 "\"implements\"", "\"import\"", "\"instanceof\"", "\"int\"", "\"interface\"", 157 "\"long\"", "\"native\"", "\"new\"", "\"null\"", "\"package\"", "\"private\"", 158 "\"protected\"", "\"public\"", "\"return\"", "\"short\"", "\"static\"", "\"strictfp\"", 159 "\"super\"", "\"switch\"", "\"synchronized\"", "\"this\"", "\"throw\"", "\"throws\"", 160 "\"transient\"", "\"true\"", "\"try\"", "\"void\"", "\"volatile\"", "\"while\"", 161 "<INTEGER_LITERAL>", "<DECIMAL_LITERAL>", "<HEX_LITERAL>", "<OCTAL_LITERAL>", 162 "<FLOATING_POINT_LITERAL>", "<EXPONENT>", "<CHARACTER_LITERAL>", "<STRING_LITERAL>", 163 "<IDENTIFIER>", "<LETTER>", "<DIGIT>", "\"(\"", "\")\"", "\"{\"", "\"}\"", "\"[\"", 164 "\"]\"", "\";\"", "\",\"", "\".\"", "\"=\"", "\">\"", "\"<\"", "\"!\"", "\"~\"", 165 "\"?\"", "\":\"", "\"==\"", "\"<=\"", "\">=\"", "\"!=\"", "\"||\"", "\"&&\"", "\"++\"", 166 "\"--\"", "\"+\"", "\"-\"", "\"*\"", "\"/\"", "\"&\"", "\"|\"", "\"^\"", "\"%\"", 167 "\"<<\"", "\">>\"", "\">>>\"", "\"+=\"", "\"-=\"", "\"*=\"", "\"/=\"", "\"&=\"", 168 "\"|=\"", "\"^=\"", "\"%=\"", "\"<<=\"", "\">>=\"", "\">>>=\"", }; 169 170 } 171 | Popular Tags |