ExpressionTokenTypes.java

biz/hammurapi/eval/ExpressionTokenTypes.java

Violations

Inspector Message Severity Location
Java Inspector 048 Copyrights information should be present in each file. 1
Java Inspector 089 Undocumented top level type 2 5:1
Java Inspector 005 Classes, interfaces, methods, and variables should be named according to Sun's naming conventions. 3 6:9
Java Inspector 005 Classes, interfaces, methods, and variables should be named according to Sun's naming conventions. 3 7:9
Java Inspector 005 Classes, interfaces, methods, and variables should be named according to Sun's naming conventions. 3 8:9
Java Inspector 005 Classes, interfaces, methods, and variables should be named according to Sun's naming conventions. 3 9:9
Java Inspector 005 Classes, interfaces, methods, and variables should be named according to Sun's naming conventions. 3 10:9
Java Inspector 005 Classes, interfaces, methods, and variables should be named according to Sun's naming conventions. 3 11:9
Java Inspector 005 Classes, interfaces, methods, and variables should be named according to Sun's naming conventions. 3 12:9
Java Inspector 005 Classes, interfaces, methods, and variables should be named according to Sun's naming conventions. 3 13:9
Java Inspector 005 Classes, interfaces, methods, and variables should be named according to Sun's naming conventions. 3 14:9
Java Inspector 005 Classes, interfaces, methods, and variables should be named according to Sun's naming conventions. 3 15:9
Java Inspector 005 Classes, interfaces, methods, and variables should be named according to Sun's naming conventions. 3 16:9
Java Inspector 005 Classes, interfaces, methods, and variables should be named according to Sun's naming conventions. 3 17:9
Java Inspector 005 Classes, interfaces, methods, and variables should be named according to Sun's naming conventions. 3 18:9
Java Inspector 005 Classes, interfaces, methods, and variables should be named according to Sun's naming conventions. 3 19:9
Java Inspector 005 Classes, interfaces, methods, and variables should be named according to Sun's naming conventions. 3 20:9
Java Inspector 005 Classes, interfaces, methods, and variables should be named according to Sun's naming conventions. 3 21:9
Java Inspector 005 Classes, interfaces, methods, and variables should be named according to Sun's naming conventions. 3 22:9
Java Inspector 005 Classes, interfaces, methods, and variables should be named according to Sun's naming conventions. 3 23:9
Java Inspector 005 Classes, interfaces, methods, and variables should be named according to Sun's naming conventions. 3 24:9
Java Inspector 005 Classes, interfaces, methods, and variables should be named according to Sun's naming conventions. 3 25:9
Java Inspector 005 Classes, interfaces, methods, and variables should be named according to Sun's naming conventions. 3 26:9
Java Inspector 005 Classes, interfaces, methods, and variables should be named according to Sun's naming conventions. 3 27:9
Java Inspector 005 Classes, interfaces, methods, and variables should be named according to Sun's naming conventions. 3 28:9
Java Inspector 005 Classes, interfaces, methods, and variables should be named according to Sun's naming conventions. 3 29:9
Java Inspector 005 Classes, interfaces, methods, and variables should be named according to Sun's naming conventions. 3 30:9
Java Inspector 005 Classes, interfaces, methods, and variables should be named according to Sun's naming conventions. 3 31:9
Java Inspector 005 Classes, interfaces, methods, and variables should be named according to Sun's naming conventions. 3 32:9
Java Inspector 005 Classes, interfaces, methods, and variables should be named according to Sun's naming conventions. 3 33:9
Java Inspector 005 Classes, interfaces, methods, and variables should be named according to Sun's naming conventions. 3 34:9
Java Inspector 005 Classes, interfaces, methods, and variables should be named according to Sun's naming conventions. 3 35:9
Java Inspector 005 Classes, interfaces, methods, and variables should be named according to Sun's naming conventions. 3 36:9
Java Inspector 005 Classes, interfaces, methods, and variables should be named according to Sun's naming conventions. 3 37:9
Java Inspector 005 Classes, interfaces, methods, and variables should be named according to Sun's naming conventions. 3 38:9
Java Inspector 005 Classes, interfaces, methods, and variables should be named according to Sun's naming conventions. 3 39:9
Java Inspector 005 Classes, interfaces, methods, and variables should be named according to Sun's naming conventions. 3 40:9
Java Inspector 005 Classes, interfaces, methods, and variables should be named according to Sun's naming conventions. 3 41:9
Java Inspector 005 Classes, interfaces, methods, and variables should be named according to Sun's naming conventions. 3 42:9
Java Inspector 005 Classes, interfaces, methods, and variables should be named according to Sun's naming conventions. 3 43:9
Java Inspector 005 Classes, interfaces, methods, and variables should be named according to Sun's naming conventions. 3 44:9
Java Inspector 005 Classes, interfaces, methods, and variables should be named according to Sun's naming conventions. 3 45:9
Java Inspector 005 Classes, interfaces, methods, and variables should be named according to Sun's naming conventions. 3 46:9
Java Inspector 005 Classes, interfaces, methods, and variables should be named according to Sun's naming conventions. 3 47:9
Java Inspector 005 Classes, interfaces, methods, and variables should be named according to Sun's naming conventions. 3 48:9
Java Inspector 005 Classes, interfaces, methods, and variables should be named according to Sun's naming conventions. 3 49:9
Java Inspector 054 Discourage usage of instance variables like a, j by enforcing minimal variable name length (3). 3 44:9

Source code

1// $ANTLR 2.7.5 (20050128): "expression.g" -> "ExpressionLexer.java"$

2
3package biz.hammurapi.eval;
4
5public interface ExpressionTokenTypes {
6 int EOF = 1;
7 int NULL_TREE_LOOKAHEAD = 3;
8 int PARAMETERS = 4;
9 int PARAMETER_DEF = 5;
10 int TYPE = 6;
11 int ARRAY_DECLARATOR = 7;
12 int TYPECAST = 8;
13 int METHOD_CALL = 9;
14 int INDEX_OP = 10;
15 int ELIST = 11;
16 int MINUS = 12;
17 int PLUS = 13;
18 int LNOT = 14;
19 int LPAREN = 15;
20 int RPAREN = 16;
21 int DOT = 17;
22 int IDENT = 18;
23 int LBRACK = 19;
24 int RBRACK = 20;
25 int LITERAL_true = 21;
26 int LITERAL_false = 22;
27 int LITERAL_null = 23;
28 int COMMA = 24;
29 int NUM_INT = 25;
30 int CHAR_LITERAL = 26;
31 int STRING_LITERAL = 27;
32 int NUM_FLOAT = 28;
33 int NUM_LONG = 29;
34 int NUM_DOUBLE = 30;
35 int LITERAL_boolean = 31;
36 int LITERAL_byte = 32;
37 int LITERAL_char = 33;
38 int LITERAL_short = 34;
39 int LITERAL_int = 35;
40 int LITERAL_float = 36;
41 int LITERAL_long = 37;
42 int LITERAL_double = 38;
43 int COLON = 39;
44 int WS = 40;
45 int ESC = 41;
46 int HEX_DIGIT = 42;
47 int VOCAB = 43;
48 int EXPONENT = 44;
49 int FLOAT_SUFFIX = 45;
50}
51