KickJava   Java API By Example, From Geeks To Geeks.

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


1 /* Generated By:JJTree: Do not edit this line. C:/cygwin/home/Kabir/cvs/jboss-head/aop/src/main/org/jboss/aop/pointcut/ast\PointcutExpressionParserTreeConstants.java */
2
3 package org.jboss.aop.pointcut.ast;
4
5 public interface PointcutExpressionParserTreeConstants
6 {
7   public int JJTSTART = 0;
8   public int JJTEXECUTIONONLY = 1;
9   public int JJTVOID = 2;
10   public int JJTBOOLEAN = 3;
11   public int JJTCOMPOSITE = 4;
12   public int JJTNOT = 5;
13   public int JJTSUB = 6;
14   public int JJTAND = 7;
15   public int JJTOR = 8;
16   public int JJTCFLOWEXPRESSION = 9;
17   public int JJTCFLOWBOOLEAN = 10;
18   public int JJTNOTCFLOW = 11;
19   public int JJTCOMPOSITECFLOW = 12;
20   public int JJTSUBCFLOW = 13;
21   public int JJTANDCFLOW = 14;
22   public int JJTORCFLOW = 15;
23   public int JJTPOINTCUT = 16;
24   public int JJTCFLOW = 17;
25   public int JJTALL = 18;
26   public int JJTCALL = 19;
27   public int JJTWITHIN = 20;
28   public int JJTWITHINCODE = 21;
29   public int JJTEXECUTION = 22;
30   public int JJTCONSTRUCTION = 23;
31   public int JJTHAS = 24;
32   public int JJTHASFIELD = 25;
33   public int JJTGET = 26;
34   public int JJTSET = 27;
35   public int JJTFIELDEXECUTION = 28;
36   public int JJTMETHOD = 29;
37   public int JJTEXCEPTION = 30;
38   public int JJTATTRIBUTE = 31;
39   public int JJTCONSTRUCTOR = 32;
40   public int JJTPARAMETER = 33;
41   public int JJTALLPARAMETER = 34;
42   public int JJTFIELD = 35;
43
44
45   public String JavaDoc[] jjtNodeName = {
46     "Start",
47     "ExecutionOnly",
48     "void",
49     "Boolean",
50     "Composite",
51     "Not",
52     "Sub",
53     "And",
54     "Or",
55     "CFlowExpression",
56     "CFlowBoolean",
57     "NotCFlow",
58     "CompositeCFlow",
59     "SubCFlow",
60     "AndCFlow",
61     "OrCFlow",
62     "Pointcut",
63     "CFlow",
64     "All",
65     "Call",
66     "Within",
67     "Withincode",
68     "Execution",
69     "Construction",
70     "Has",
71     "HasField",
72     "Get",
73     "Set",
74     "FieldExecution",
75     "Method",
76     "Exception",
77     "Attribute",
78     "Constructor",
79     "Parameter",
80     "AllParameter",
81     "Field",
82   };
83 }
84
Popular Tags