1 2 3 package org.apache.el.parser; 4 5 public interface ELParserTreeConstants 6 { 7 public int JJTCOMPOSITEEXPRESSION = 0; 8 public int JJTLITERALEXPRESSION = 1; 9 public int JJTDEFERREDEXPRESSION = 2; 10 public int JJTDYNAMICEXPRESSION = 3; 11 public int JJTVOID = 4; 12 public int JJTCHOICE = 5; 13 public int JJTOR = 6; 14 public int JJTAND = 7; 15 public int JJTEQUAL = 8; 16 public int JJTNOTEQUAL = 9; 17 public int JJTLESSTHAN = 10; 18 public int JJTGREATERTHAN = 11; 19 public int JJTLESSTHANEQUAL = 12; 20 public int JJTGREATERTHANEQUAL = 13; 21 public int JJTPLUS = 14; 22 public int JJTMINUS = 15; 23 public int JJTMULT = 16; 24 public int JJTDIV = 17; 25 public int JJTMOD = 18; 26 public int JJTNEGATIVE = 19; 27 public int JJTNOT = 20; 28 public int JJTEMPTY = 21; 29 public int JJTVALUE = 22; 30 public int JJTDOTSUFFIX = 23; 31 public int JJTBRACKETSUFFIX = 24; 32 public int JJTIDENTIFIER = 25; 33 public int JJTFUNCTION = 26; 34 public int JJTTRUE = 27; 35 public int JJTFALSE = 28; 36 public int JJTFLOATINGPOINT = 29; 37 public int JJTINTEGER = 30; 38 public int JJTSTRING = 31; 39 public int JJTNULL = 32; 40 41 42 public String [] jjtNodeName = { 43 "CompositeExpression", 44 "LiteralExpression", 45 "DeferredExpression", 46 "DynamicExpression", 47 "void", 48 "Choice", 49 "Or", 50 "And", 51 "Equal", 52 "NotEqual", 53 "LessThan", 54 "GreaterThan", 55 "LessThanEqual", 56 "GreaterThanEqual", 57 "Plus", 58 "Minus", 59 "Mult", 60 "Div", 61 "Mod", 62 "Negative", 63 "Not", 64 "Empty", 65 "Value", 66 "DotSuffix", 67 "BracketSuffix", 68 "Identifier", 69 "Function", 70 "True", 71 "False", 72 "FloatingPoint", 73 "Integer", 74 "String", 75 "Null", 76 }; 77 } 78 | Popular Tags |