KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > modules > debugger > jpda > expr > JavaParserTreeConstants


1 /*
2  * The contents of this file are subject to the terms of the Common Development
3  * and Distribution License (the License). You may not use this file except in
4  * compliance with the License.
5  *
6  * You can obtain a copy of the License at http://www.netbeans.org/cddl.html
7  * or http://www.netbeans.org/cddl.txt.
8  *
9  * When distributing Covered Code, include this CDDL Header Notice in each file
10  * and include the License file at http://www.netbeans.org/cddl.txt.
11  * If applicable, add the following below the CDDL Header, with the fields
12  * enclosed by brackets [] replaced by your own identifying information:
13  * "Portions Copyrighted [year] [name of copyright owner]"
14  *
15  * The Original Software is NetBeans. The Initial Developer of the Original
16  * Software is Sun Microsystems, Inc. Portions Copyright 1997-2006 Sun
17  * Microsystems, Inc. All Rights Reserved.
18  */

19
20 /* Generated By:JJTree: Do not edit this line. JavaParserTreeConstants.java */
21
22 package org.netbeans.modules.debugger.jpda.expr;
23
24 interface JavaParserTreeConstants
25 {
26   public int JJTREFERENCETYPELIST = 0;
27   public int JJTACTUALTYPEARGUMENT = 1;
28   public int JJTIDENTIFIER = 2;
29   public int JJTVOID = 3;
30   public int JJTARRAYINITIALIZER = 4;
31   public int JJTREFERENCETYPE = 5;
32   public int JJTTYPEARGUMENTS = 6;
33   public int JJTPRIMITIVETYPE = 7;
34   public int JJTRESULTTYPE = 8;
35   public int JJTNAME = 9;
36   public int JJTCLASSORINTERFACETYPE = 10;
37   public int JJTEXPRESSION = 11;
38   public int JJTASSIGNMENTOPERATOR = 12;
39   public int JJTCONDITIONALEXPRESSION = 13;
40   public int JJTCONDITIONALOREXPRESSION = 14;
41   public int JJTCONDITIONALANDEXPRESSION = 15;
42   public int JJTINCLUSIVEOREXPRESSION = 16;
43   public int JJTEXCLUSIVEOREXPRESSION = 17;
44   public int JJTANDEXPRESSION = 18;
45   public int JJTEQUALITYEXPRESSION = 19;
46   public int JJTINSTANCEOFEXPRESSION = 20;
47   public int JJTRELATIONALEXPRESSION = 21;
48   public int JJTSHIFTEXPRESSION = 22;
49   public int JJTADDITIVEEXPRESSION = 23;
50   public int JJTMULTIPLICATIVEEXPRESSION = 24;
51   public int JJTUNARYEXPRESSION = 25;
52   public int JJTPREINCREMENTEXPRESSION = 26;
53   public int JJTPREDECREMENTEXPRESSION = 27;
54   public int JJTUNARYEXPRESSIONNOTPLUSMINUS = 28;
55   public int JJTPOSTFIXEXPRESSION = 29;
56   public int JJTCASTEXPRESSION = 30;
57   public int JJTPRIMARYEXPRESSION = 31;
58   public int JJTPRIMARYPREFIX = 32;
59   public int JJTPRIMARYSUFFIX = 33;
60   public int JJTLITERAL = 34;
61   public int JJTBOOLEANLITERAL = 35;
62   public int JJTNULLLITERAL = 36;
63   public int JJTARGUMENTS = 37;
64   public int JJTARGUMENTLIST = 38;
65   public int JJTALLOCATIONEXPRESSION = 39;
66   public int JJTARRAYDIMSANDINITS = 40;
67
68
69   public String JavaDoc[] jjtNodeName = {
70     "ReferenceTypeList",
71     "ActualTypeArgument",
72     "Identifier",
73     "void",
74     "ArrayInitializer",
75     "ReferenceType",
76     "TypeArguments",
77     "PrimitiveType",
78     "ResultType",
79     "Name",
80     "ClassOrInterfaceType",
81     "Expression",
82     "AssignmentOperator",
83     "ConditionalExpression",
84     "ConditionalOrExpression",
85     "ConditionalAndExpression",
86     "InclusiveOrExpression",
87     "ExclusiveOrExpression",
88     "AndExpression",
89     "EqualityExpression",
90     "InstanceOfExpression",
91     "RelationalExpression",
92     "ShiftExpression",
93     "AdditiveExpression",
94     "MultiplicativeExpression",
95     "UnaryExpression",
96     "PreIncrementExpression",
97     "PreDecrementExpression",
98     "UnaryExpressionNotPlusMinus",
99     "PostfixExpression",
100     "CastExpression",
101     "PrimaryExpression",
102     "PrimaryPrefix",
103     "PrimarySuffix",
104     "Literal",
105     "BooleanLiteral",
106     "NullLiteral",
107     "Arguments",
108     "ArgumentList",
109     "AllocationExpression",
110     "ArrayDimsAndInits",
111   };
112 }
113
Popular Tags