KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > aop > annotation > ast > AnnotationParserConstants


1 /* Generated By:JJTree&JavaCC: Do not edit this line. AnnotationParserConstants.java */
2 package org.jboss.aop.annotation.ast;
3
4 public interface AnnotationParserConstants {
5
6   int EOF = 0;
7   int IDENTIFIER = 3;
8   int LETTER = 4;
9   int CHARACTER = 5;
10   int STRING = 6;
11
12   int DEFAULT = 0;
13
14   String JavaDoc[] tokenImage = {
15     "<EOF>",
16     "\" \"",
17     "\"\\t\"",
18     "<IDENTIFIER>",
19     "<LETTER>",
20     "<CHARACTER>",
21     "<STRING>",
22     "\"\\r\\n\"",
23     "\"\\n\"",
24     "\"@\"",
25     "\"(\"",
26     "\")\"",
27     "\",\"",
28     "\"=\"",
29     "\"{\"",
30     "\"}\"",
31   };
32
33 }
34
Popular Tags