PropertyListParserConstants.java
- /* Generated By:JavaCC: Do not edit this line. PropertyListParserConstants.java */
- package org.apache.commons.configuration2.plist;
- /**
- * Token literal values and constants.
- * Generated by org.javacc.parser.OtherFilesGen#start()
- */
- public interface PropertyListParserConstants {
- /** End of File. */
- int EOF = 0;
- /** RegularExpression Id. */
- int SINGLE_LINE_COMMENT = 9;
- /** RegularExpression Id. */
- int ARRAY_BEGIN = 11;
- /** RegularExpression Id. */
- int ARRAY_END = 12;
- /** RegularExpression Id. */
- int ARRAY_SEPARATOR = 13;
- /** RegularExpression Id. */
- int DICT_BEGIN = 14;
- /** RegularExpression Id. */
- int DICT_END = 15;
- /** RegularExpression Id. */
- int DICT_SEPARATOR = 16;
- /** RegularExpression Id. */
- int EQUAL = 17;
- /** RegularExpression Id. */
- int DATA_START = 18;
- /** RegularExpression Id. */
- int DATA_END = 19;
- /** RegularExpression Id. */
- int DATE_START = 20;
- /** RegularExpression Id. */
- int QUOTE = 21;
- /** RegularExpression Id. */
- int LETTER = 22;
- /** RegularExpression Id. */
- int WHITE = 23;
- /** RegularExpression Id. */
- int HEXA = 24;
- /** RegularExpression Id. */
- int DATA = 25;
- /** RegularExpression Id. */
- int DATE = 26;
- /** RegularExpression Id. */
- int STRING = 27;
- /** RegularExpression Id. */
- int QUOTED_STRING = 28;
- /** RegularExpression Id. */
- int ESCAPED_QUOTE = 29;
- /** Lexical state. */
- int DEFAULT = 0;
- /** Lexical state. */
- int IN_COMMENT = 1;
- /** Lexical state. */
- int IN_SINGLE_LINE_COMMENT = 2;
- /** Literal token values. */
- String[] tokenImage = {
- "<EOF>",
- "\" \"",
- "\"\\t\"",
- "\"\\n\"",
- "\"\\r\"",
- "\"/*\"",
- "<token of kind 6>",
- "\"*/\"",
- "\"//\"",
- "<SINGLE_LINE_COMMENT>",
- "<token of kind 10>",
- "\"(\"",
- "\")\"",
- "\",\"",
- "\"{\"",
- "\"}\"",
- "\";\"",
- "\"=\"",
- "\"<\"",
- "\">\"",
- "\"<*D\"",
- "\"\\\"\"",
- "<LETTER>",
- "<WHITE>",
- "<HEXA>",
- "<DATA>",
- "<DATE>",
- "<STRING>",
- "<QUOTED_STRING>",
- "\"\\\\\\\"\"",
- };
- }