Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
PropertyListParserConstants |
|
| 0.0;0 |
1 | /* Generated By:JavaCC: Do not edit this line. PropertyListParserConstants.java */ | |
2 | package org.apache.commons.configuration.plist; | |
3 | ||
4 | ||
5 | /** | |
6 | * Token literal values and constants. | |
7 | * Generated by org.javacc.parser.OtherFilesGen#start() | |
8 | */ | |
9 | public interface PropertyListParserConstants { | |
10 | ||
11 | /** End of File. */ | |
12 | int EOF = 0; | |
13 | /** RegularExpression Id. */ | |
14 | int SINGLE_LINE_COMMENT = 9; | |
15 | /** RegularExpression Id. */ | |
16 | int ARRAY_BEGIN = 11; | |
17 | /** RegularExpression Id. */ | |
18 | int ARRAY_END = 12; | |
19 | /** RegularExpression Id. */ | |
20 | int ARRAY_SEPARATOR = 13; | |
21 | /** RegularExpression Id. */ | |
22 | int DICT_BEGIN = 14; | |
23 | /** RegularExpression Id. */ | |
24 | int DICT_END = 15; | |
25 | /** RegularExpression Id. */ | |
26 | int DICT_SEPARATOR = 16; | |
27 | /** RegularExpression Id. */ | |
28 | int EQUAL = 17; | |
29 | /** RegularExpression Id. */ | |
30 | int DATA_START = 18; | |
31 | /** RegularExpression Id. */ | |
32 | int DATA_END = 19; | |
33 | /** RegularExpression Id. */ | |
34 | int DATE_START = 20; | |
35 | /** RegularExpression Id. */ | |
36 | int QUOTE = 21; | |
37 | /** RegularExpression Id. */ | |
38 | int LETTER = 22; | |
39 | /** RegularExpression Id. */ | |
40 | int WHITE = 23; | |
41 | /** RegularExpression Id. */ | |
42 | int HEXA = 24; | |
43 | /** RegularExpression Id. */ | |
44 | int DATA = 25; | |
45 | /** RegularExpression Id. */ | |
46 | int DATE = 26; | |
47 | /** RegularExpression Id. */ | |
48 | int STRING = 27; | |
49 | /** RegularExpression Id. */ | |
50 | int QUOTED_STRING = 28; | |
51 | /** RegularExpression Id. */ | |
52 | int ESCAPED_QUOTE = 29; | |
53 | ||
54 | /** Lexical state. */ | |
55 | int DEFAULT = 0; | |
56 | /** Lexical state. */ | |
57 | int IN_COMMENT = 1; | |
58 | /** Lexical state. */ | |
59 | int IN_SINGLE_LINE_COMMENT = 2; | |
60 | ||
61 | /** Literal token values. */ | |
62 | String[] tokenImage = { | |
63 | "<EOF>", | |
64 | "\" \"", | |
65 | "\"\\t\"", | |
66 | "\"\\n\"", | |
67 | "\"\\r\"", | |
68 | "\"/*\"", | |
69 | "<token of kind 6>", | |
70 | "\"*/\"", | |
71 | "\"//\"", | |
72 | "<SINGLE_LINE_COMMENT>", | |
73 | "<token of kind 10>", | |
74 | "\"(\"", | |
75 | "\")\"", | |
76 | "\",\"", | |
77 | "\"{\"", | |
78 | "\"}\"", | |
79 | "\";\"", | |
80 | "\"=\"", | |
81 | "\"<\"", | |
82 | "\">\"", | |
83 | "\"<*D\"", | |
84 | "\"\\\"\"", | |
85 | "<LETTER>", | |
86 | "<WHITE>", | |
87 | "<HEXA>", | |
88 | "<DATA>", | |
89 | "<DATE>", | |
90 | "<STRING>", | |
91 | "<QUOTED_STRING>", | |
92 | "\"\\\\\\\"\"", | |
93 | }; | |
94 | ||
95 | } |