-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSimpleJavaParserConstants.java
More file actions
55 lines (49 loc) · 1.08 KB
/
SimpleJavaParserConstants.java
File metadata and controls
55 lines (49 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/* Generated By:JavaCC: Do not edit this line. SimpleJavaParserConstants.java */
/**
* Token literal values and constants.
* Generated by org.javacc.parser.OtherFilesGen#start()
*/
public interface SimpleJavaParserConstants {
/** End of File. */
int EOF = 0;
/** RegularExpression Id. */
int PUBLIC = 5;
/** RegularExpression Id. */
int CLASS = 6;
/** RegularExpression Id. */
int ABS = 7;
/** RegularExpression Id. */
int METHODTYPE = 8;
/** RegularExpression Id. */
int LBRACE = 9;
/** RegularExpression Id. */
int RBRACE = 10;
/** RegularExpression Id. */
int OPEN = 11;
/** RegularExpression Id. */
int CLOSE = 12;
/** RegularExpression Id. */
int COMMA = 13;
/** RegularExpression Id. */
int IDENTIFIER = 14;
/** Lexical state. */
int DEFAULT = 0;
/** Literal token values. */
String[] tokenImage = {
"<EOF>",
"\" \"",
"\"\\n\"",
"\"\\r\"",
"\"\\t\"",
"\"public\"",
"\"class\"",
"\"abstract\"",
"<METHODTYPE>",
"\"{\"",
"\"}\"",
"\"(\"",
"\")\"",
"\",\"",
"<IDENTIFIER>",
};
}