Clover coverage report - Drools - 2.0-rc2
Coverage timestamp: Wed May 11 2005 07:12:26 BST
file stats: LOC: 164   Methods: 0
NCLOC: 160   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
JavaTreeParserTokenTypes.java - - - -
coverage
 1    // $ANTLR 2.7.2: "java.tree.g" -> "JavaTreeParser.java"$
 2   
 3    package org.drools.semantics.java.parser;
 4   
 5    import java.util.List;
 6    import java.util.ArrayList;
 7   
 8    public interface JavaTreeParserTokenTypes {
 9    int EOF = 1;
 10    int NULL_TREE_LOOKAHEAD = 3;
 11    int BLOCK = 4;
 12    int MODIFIERS = 5;
 13    int OBJBLOCK = 6;
 14    int SLIST = 7;
 15    int CTOR_DEF = 8;
 16    int METHOD_DEF = 9;
 17    int VARIABLE_DEF = 10;
 18    int INSTANCE_INIT = 11;
 19    int STATIC_INIT = 12;
 20    int TYPE = 13;
 21    int CLASS_DEF = 14;
 22    int INTERFACE_DEF = 15;
 23    int PACKAGE_DEF = 16;
 24    int ARRAY_DECLARATOR = 17;
 25    int EXTENDS_CLAUSE = 18;
 26    int IMPLEMENTS_CLAUSE = 19;
 27    int PARAMETERS = 20;
 28    int PARAMETER_DEF = 21;
 29    int LABELED_STAT = 22;
 30    int TYPECAST = 23;
 31    int INDEX_OP = 24;
 32    int POST_INC = 25;
 33    int POST_DEC = 26;
 34    int METHOD_CALL = 27;
 35    int EXPR = 28;
 36    int ARRAY_INIT = 29;
 37    int IMPORT = 30;
 38    int UNARY_MINUS = 31;
 39    int UNARY_PLUS = 32;
 40    int CASE_GROUP = 33;
 41    int ELIST = 34;
 42    int FOR_INIT = 35;
 43    int FOR_CONDITION = 36;
 44    int FOR_ITERATOR = 37;
 45    int EMPTY_STAT = 38;
 46    int FINAL = 39;
 47    int ABSTRACT = 40;
 48    int STRICTFP = 41;
 49    int SUPER_CTOR_CALL = 42;
 50    int CTOR_CALL = 43;
 51    int RULE_SET = 44;
 52    int RULE = 45;
 53    int WHEN = 46;
 54    int THEN = 47;
 55    int IDENT = 48;
 56    int LCURLY = 49;
 57    int RCURLY = 50;
 58    int LPAREN = 51;
 59    int RPAREN = 52;
 60    int SEMI = 53;
 61    int ASSIGN = 54;
 62    int LITERAL_package = 55;
 63    int LITERAL_import = 56;
 64    int LBRACK = 57;
 65    int RBRACK = 58;
 66    int LITERAL_void = 59;
 67    int LITERAL_boolean = 60;
 68    int LITERAL_byte = 61;
 69    int LITERAL_char = 62;
 70    int LITERAL_short = 63;
 71    int LITERAL_int = 64;
 72    int LITERAL_float = 65;
 73    int LITERAL_long = 66;
 74    int LITERAL_double = 67;
 75    int DOT = 68;
 76    int STAR = 69;
 77    int LITERAL_private = 70;
 78    int LITERAL_public = 71;
 79    int LITERAL_protected = 72;
 80    int LITERAL_static = 73;
 81    int LITERAL_transient = 74;
 82    int LITERAL_native = 75;
 83    int LITERAL_threadsafe = 76;
 84    int LITERAL_synchronized = 77;
 85    int LITERAL_volatile = 78;
 86    int LITERAL_class = 79;
 87    int LITERAL_extends = 80;
 88    int LITERAL_interface = 81;
 89    int COMMA = 82;
 90    int LITERAL_implements = 83;
 91    int LITERAL_this = 84;
 92    int LITERAL_super = 85;
 93    int LITERAL_throws = 86;
 94    int COLON = 87;
 95    int LITERAL_if = 88;
 96    int LITERAL_else = 89;
 97    int LITERAL_for = 90;
 98    int LITERAL_while = 91;
 99    int LITERAL_do = 92;
 100    int LITERAL_break = 93;
 101    int LITERAL_continue = 94;
 102    int LITERAL_return = 95;
 103    int LITERAL_switch = 96;
 104    int LITERAL_throw = 97;
 105    int LITERAL_case = 98;
 106    int LITERAL_default = 99;
 107    int LITERAL_try = 100;
 108    int LITERAL_finally = 101;
 109    int LITERAL_catch = 102;
 110    int PLUS_ASSIGN = 103;
 111    int MINUS_ASSIGN = 104;
 112    int STAR_ASSIGN = 105;
 113    int DIV_ASSIGN = 106;
 114    int MOD_ASSIGN = 107;
 115    int SR_ASSIGN = 108;
 116    int BSR_ASSIGN = 109;
 117    int SL_ASSIGN = 110;
 118    int BAND_ASSIGN = 111;
 119    int BXOR_ASSIGN = 112;
 120    int BOR_ASSIGN = 113;
 121    int QUESTION = 114;
 122    int LOR = 115;
 123    int LAND = 116;
 124    int BOR = 117;
 125    int BXOR = 118;
 126    int BAND = 119;
 127    int NOT_EQUAL = 120;
 128    int EQUAL = 121;
 129    int LT = 122;
 130    int GT = 123;
 131    int LE = 124;
 132    int GE = 125;
 133    int LITERAL_instanceof = 126;
 134    int SL = 127;
 135    int SR = 128;
 136    int BSR = 129;
 137    int PLUS = 130;
 138    int MINUS = 131;
 139    int DIV = 132;
 140    int MOD = 133;
 141    int INC = 134;
 142    int DEC = 135;
 143    int BNOT = 136;
 144    int LNOT = 137;
 145    int LITERAL_true = 138;
 146    int LITERAL_false = 139;
 147    int LITERAL_null = 140;
 148    int LITERAL_new = 141;
 149    int NUM_INT = 142;
 150    int CHAR_LITERAL = 143;
 151    int STRING_LITERAL = 144;
 152    int NUM_FLOAT = 145;
 153    int NUM_LONG = 146;
 154    int NUM_DOUBLE = 147;
 155    int WS = 148;
 156    int SL_COMMENT = 149;
 157    int ML_COMMENT = 150;
 158    int ESC = 151;
 159    int HEX_DIGIT = 152;
 160    int VOCAB = 153;
 161    int EXPONENT = 154;
 162    int FLOAT_SUFFIX = 155;
 163    int LITERAL_const = 156;
 164    }