KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > el > parser > ELParserTreeConstants


1 /*
2  * The contents of this file are subject to the terms
3  * of the Common Development and Distribution License
4  * (the "License"). You may not use this file except
5  * in compliance with the License.
6  *
7  * You can obtain a copy of the license at
8  * glassfish/bootstrap/legal/CDDLv1.0.txt or
9  * https://glassfish.dev.java.net/public/CDDLv1.0.html.
10  * See the License for the specific language governing
11  * permissions and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL
14  * HEADER in each file and include the License file at
15  * glassfish/bootstrap/legal/CDDLv1.0.txt. If applicable,
16  * add the following below this CDDL HEADER, with the
17  * fields enclosed by brackets "[]" replaced with your
18  * own identifying information: Portions Copyright [yyyy]
19  * [name of copyright owner]
20  *
21  * Copyright 2005 Sun Microsystems, Inc. All rights reserved.
22  */
/* Generated By:JJTree: Do not edit this line. /tomc/web.align/webtier-alignment/prototype/el-ri/src/com/sun/el/parser/ELParserTreeConstants.java */
23
24 package com.sun.el.parser;
25
26 public interface ELParserTreeConstants
27 {
28   public int JJTCOMPOSITEEXPRESSION = 0;
29   public int JJTLITERALEXPRESSION = 1;
30   public int JJTDEFERREDEXPRESSION = 2;
31   public int JJTDYNAMICEXPRESSION = 3;
32   public int JJTVOID = 4;
33   public int JJTCHOICE = 5;
34   public int JJTOR = 6;
35   public int JJTAND = 7;
36   public int JJTEQUAL = 8;
37   public int JJTNOTEQUAL = 9;
38   public int JJTLESSTHAN = 10;
39   public int JJTGREATERTHAN = 11;
40   public int JJTLESSTHANEQUAL = 12;
41   public int JJTGREATERTHANEQUAL = 13;
42   public int JJTPLUS = 14;
43   public int JJTMINUS = 15;
44   public int JJTMULT = 16;
45   public int JJTDIV = 17;
46   public int JJTMOD = 18;
47   public int JJTNEGATIVE = 19;
48   public int JJTNOT = 20;
49   public int JJTEMPTY = 21;
50   public int JJTVALUE = 22;
51   public int JJTDOTSUFFIX = 23;
52   public int JJTBRACKETSUFFIX = 24;
53   public int JJTIDENTIFIER = 25;
54   public int JJTFUNCTION = 26;
55   public int JJTTRUE = 27;
56   public int JJTFALSE = 28;
57   public int JJTFLOATINGPOINT = 29;
58   public int JJTINTEGER = 30;
59   public int JJTSTRING = 31;
60   public int JJTNULL = 32;
61
62
63   public String JavaDoc[] jjtNodeName = {
64     "CompositeExpression",
65     "LiteralExpression",
66     "DeferredExpression",
67     "DynamicExpression",
68     "void",
69     "Choice",
70     "Or",
71     "And",
72     "Equal",
73     "NotEqual",
74     "LessThan",
75     "GreaterThan",
76     "LessThanEqual",
77     "GreaterThanEqual",
78     "Plus",
79     "Minus",
80     "Mult",
81     "Div",
82     "Mod",
83     "Negative",
84     "Not",
85     "Empty",
86     "Value",
87     "DotSuffix",
88     "BracketSuffix",
89     "Identifier",
90     "Function",
91     "True",
92     "False",
93     "FloatingPoint",
94     "Integer",
95     "String",
96     "Null",
97   };
98 }
99
Popular Tags