Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
GroupMatcherParserConstants |
|
| 0.0;0 |
1 | /* Generated By:JavaCC: Do not edit this line. GroupMatcherParserConstants.java */ | |
2 | package org.apache.maven.surefire.group.parse; | |
3 | ||
4 | ||
5 | /** | |
6 | * Token literal values and constants. | |
7 | * Generated by org.javacc.parser.OtherFilesGen#start() | |
8 | */ | |
9 | public interface GroupMatcherParserConstants { | |
10 | ||
11 | /** End of File. */ | |
12 | int EOF = 0; | |
13 | /** RegularExpression Id. */ | |
14 | int AND = 5; | |
15 | /** RegularExpression Id. */ | |
16 | int OR = 6; | |
17 | /** RegularExpression Id. */ | |
18 | int AMP2 = 7; | |
19 | /** RegularExpression Id. */ | |
20 | int PIPE2 = 8; | |
21 | /** RegularExpression Id. */ | |
22 | int COMMA = 9; | |
23 | /** RegularExpression Id. */ | |
24 | int NOT = 10; | |
25 | /** RegularExpression Id. */ | |
26 | int BANG = 11; | |
27 | /** RegularExpression Id. */ | |
28 | int LPAREN = 12; | |
29 | /** RegularExpression Id. */ | |
30 | int RPAREN = 13; | |
31 | /** RegularExpression Id. */ | |
32 | int STRING = 14; | |
33 | /** RegularExpression Id. */ | |
34 | int CLS = 15; | |
35 | ||
36 | /** Lexical state. */ | |
37 | int DEFAULT = 0; | |
38 | ||
39 | /** Literal token values. */ | |
40 | String[] tokenImage = { | |
41 | "<EOF>", | |
42 | "\" \"", | |
43 | "\"\\t\"", | |
44 | "\"\\r\"", | |
45 | "\"\\n\"", | |
46 | "<AND>", | |
47 | "<OR>", | |
48 | "\"&&\"", | |
49 | "\"||\"", | |
50 | "\",\"", | |
51 | "\"NOT\"", | |
52 | "\"!\"", | |
53 | "\"(\"", | |
54 | "\")\"", | |
55 | "<STRING>", | |
56 | "\".class\"", | |
57 | }; | |
58 | ||
59 | } |