View Javadoc

1   package org.apache.commons.ognl;
2   
3   /*
4    * Licensed to the Apache Software Foundation (ASF) under one
5    * or more contributor license agreements.  See the NOTICE file
6    * distributed with this work for additional information
7    * regarding copyright ownership.  The ASF licenses this file
8    * to you under the Apache License, Version 2.0 (the
9    * "License"); you may not use this file except in compliance
10   * with the License.  You may obtain a copy of the License at
11   *
12   * http://www.apache.org/licenses/LICENSE-2.0
13   *
14   * Unless required by applicable law or agreed to in writing,
15   * software distributed under the License is distributed on an
16   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17   * KIND, either express or implied.  See the License for the
18   * specific language governing permissions and limitations
19   * under the License.
20   */
21  
22  /**
23   * $Id: OgnlParserTreeConstants.java 1194868 2011-10-29 11:04:16Z mcucchiara $
24   * Generated By:JavaCC: Do not edit this line. OgnlParserTreeConstants.java Version 4.1d1
25   */
26  
27  public interface OgnlParserTreeConstants
28  {
29      int JJTVOID = 0;
30  
31      int JJTSEQUENCE = 1;
32  
33      int JJTASSIGN = 2;
34  
35      int JJTTEST = 3;
36  
37      int JJTOR = 4;
38  
39      int JJTAND = 5;
40  
41      int JJTBITOR = 6;
42  
43      int JJTXOR = 7;
44  
45      int JJTBITAND = 8;
46  
47      int JJTEQ = 9;
48  
49      int JJTNOTEQ = 10;
50  
51      int JJTLESS = 11;
52  
53      int JJTGREATER = 12;
54  
55      int JJTLESSEQ = 13;
56  
57      int JJTGREATEREQ = 14;
58  
59      int JJTIN = 15;
60  
61      int JJTNOTIN = 16;
62  
63      int JJTSHIFTLEFT = 17;
64  
65      int JJTSHIFTRIGHT = 18;
66  
67      int JJTUNSIGNEDSHIFTRIGHT = 19;
68  
69      int JJTADD = 20;
70  
71      int JJTSUBTRACT = 21;
72  
73      int JJTMULTIPLY = 22;
74  
75      int JJTDIVIDE = 23;
76  
77      int JJTREMAINDER = 24;
78  
79      int JJTNEGATE = 25;
80  
81      int JJTBITNEGATE = 26;
82  
83      int JJTNOT = 27;
84  
85      int JJTINSTANCEOF = 28;
86  
87      int JJTCHAIN = 29;
88  
89      int JJTEVAL = 30;
90  
91      int JJTCONST = 31;
92  
93      int JJTTHISVARREF = 32;
94  
95      int JJTROOTVARREF = 33;
96  
97      int JJTVARREF = 34;
98  
99      int JJTLIST = 35;
100 
101     int JJTMAP = 36;
102 
103     int JJTKEYVALUE = 37;
104 
105     int JJTSTATICFIELD = 38;
106 
107     int JJTCTOR = 39;
108 
109     int JJTPROPERTY = 40;
110 
111     int JJTSTATICMETHOD = 41;
112 
113     int JJTMETHOD = 42;
114 
115     int JJTPROJECT = 43;
116 
117     int JJTSELECT = 44;
118 
119     int JJTSELECTFIRST = 45;
120 
121     int JJTSELECTLAST = 46;
122 
123     String[] jjtNodeName =
124         { "void", "Sequence", "Assign", "Test", "Or", "And", "BitOr", "Xor", "BitAnd", "Eq", "NotEq", "Less", "Greater",
125             "LessEq", "GreaterEq", "In", "NotIn", "ShiftLeft", "ShiftRight", "UnsignedShiftRight", "Add", "Subtract",
126             "Multiply", "Divide", "Remainder", "Negate", "BitNegate", "Not", "Instanceof", "Chain", "Eval", "Const",
127             "ThisVarRef", "RootVarRef", "VarRef", "List", "Map", "KeyValue", "StaticField", "Ctor", "Property",
128             "StaticMethod", "Method", "Project", "Select", "SelectFirst", "SelectLast", };
129 }
130 /* JavaCC - OriginalChecksum=effe3edc2df093c4b217c61a43612af5 (do not edit this line) */