KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > codehaus > aspectwerkz > annotation > expression > ast > AnnotationParserTreeConstants


1 /* Generated By:JJTree: Do not edit this line. D:/aw/cvs_aw/aspectwerkz4/src/main/org/codehaus/aspectwerkz/annotation/expression/ast\AnnotationParserTreeConstants.java */
2
3 package org.codehaus.aspectwerkz.annotation.expression.ast;
4
5 public interface AnnotationParserTreeConstants
6 {
7   public int JJTROOT = 0;
8   public int JJTANNOTATION = 1;
9   public int JJTVOID = 2;
10   public int JJTKEYVALUEPAIR = 3;
11   public int JJTIDENTIFIER = 4;
12   public int JJTBOOLEAN = 5;
13   public int JJTCHAR = 6;
14   public int JJTSTRING = 7;
15   public int JJTARRAY = 8;
16   public int JJTINTEGER = 9;
17   public int JJTFLOAT = 10;
18   public int JJTHEX = 11;
19   public int JJTOCT = 12;
20
21
22   public String JavaDoc[] jjtNodeName = {
23     "Root",
24     "Annotation",
25     "void",
26     "KeyValuePair",
27     "Identifier",
28     "Boolean",
29     "Char",
30     "String",
31     "Array",
32     "Integer",
33     "Float",
34     "Hex",
35     "Oct",
36   };
37 }
38
Popular Tags