KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > aop > pointcut > ast > TypeExpressionParserTreeConstants


1 /* Generated By:JJTree: Do not edit this line. C:/cygwin/home/Kabir/cvs/jboss-head/aop/src/main/org/jboss/aop/pointcut/ast\TypeExpressionParserTreeConstants.java */
2
3 package org.jboss.aop.pointcut.ast;
4
5 public interface TypeExpressionParserTreeConstants
6 {
7   public int JJTSTART = 0;
8   public int JJTVOID = 1;
9   public int JJTBOOLEAN = 2;
10   public int JJTCOMPOSITE = 3;
11   public int JJTNOT = 4;
12   public int JJTSUB = 5;
13   public int JJTAND = 6;
14   public int JJTOR = 7;
15   public int JJTHAS = 8;
16   public int JJTHASFIELD = 9;
17   public int JJTMETHOD = 10;
18   public int JJTATTRIBUTE = 11;
19   public int JJTCONSTRUCTOR = 12;
20   public int JJTPARAMETER = 13;
21   public int JJTALLPARAMETER = 14;
22   public int JJTFIELD = 15;
23   public int JJTCLASS = 16;
24   public int JJTEXCEPTION = 17;
25
26
27   public String JavaDoc[] jjtNodeName = {
28     "Start",
29     "void",
30     "Boolean",
31     "Composite",
32     "Not",
33     "Sub",
34     "And",
35     "Or",
36     "Has",
37     "HasField",
38     "Method",
39     "Attribute",
40     "Constructor",
41     "Parameter",
42     "AllParameter",
43     "Field",
44     "Class",
45     "Exception",
46   };
47 }
48
Popular Tags