01: /* Generated By:JJTree: Do not edit this line. ./ELParserTreeConstants.java */
02:
03: package org.apache.el.parser;
04:
05: public interface ELParserTreeConstants {
06: public int JJTCOMPOSITEEXPRESSION = 0;
07: public int JJTLITERALEXPRESSION = 1;
08: public int JJTDEFERREDEXPRESSION = 2;
09: public int JJTDYNAMICEXPRESSION = 3;
10: public int JJTVOID = 4;
11: public int JJTCHOICE = 5;
12: public int JJTOR = 6;
13: public int JJTAND = 7;
14: public int JJTEQUAL = 8;
15: public int JJTNOTEQUAL = 9;
16: public int JJTLESSTHAN = 10;
17: public int JJTGREATERTHAN = 11;
18: public int JJTLESSTHANEQUAL = 12;
19: public int JJTGREATERTHANEQUAL = 13;
20: public int JJTPLUS = 14;
21: public int JJTMINUS = 15;
22: public int JJTMULT = 16;
23: public int JJTDIV = 17;
24: public int JJTMOD = 18;
25: public int JJTNEGATIVE = 19;
26: public int JJTNOT = 20;
27: public int JJTEMPTY = 21;
28: public int JJTVALUE = 22;
29: public int JJTDOTSUFFIX = 23;
30: public int JJTBRACKETSUFFIX = 24;
31: public int JJTIDENTIFIER = 25;
32: public int JJTFUNCTION = 26;
33: public int JJTTRUE = 27;
34: public int JJTFALSE = 28;
35: public int JJTFLOATINGPOINT = 29;
36: public int JJTINTEGER = 30;
37: public int JJTSTRING = 31;
38: public int JJTNULL = 32;
39:
40: public String[] jjtNodeName = { "CompositeExpression",
41: "LiteralExpression", "DeferredExpression",
42: "DynamicExpression", "void", "Choice", "Or", "And",
43: "Equal", "NotEqual", "LessThan", "GreaterThan",
44: "LessThanEqual", "GreaterThanEqual", "Plus", "Minus",
45: "Mult", "Div", "Mod", "Negative", "Not", "Empty", "Value",
46: "DotSuffix", "BracketSuffix", "Identifier", "Function",
47: "True", "False", "FloatingPoint", "Integer", "String",
48: "Null", };
49: }
|