001 /* Generated By:JavaCC: Do not edit this line. PropertyListParserConstants.java */
002 package org.apache.commons.configuration.plist;
003
004
005 /**
006 * Token literal values and constants.
007 * Generated by org.javacc.parser.OtherFilesGen#start()
008 */
009 public interface PropertyListParserConstants {
010
011 /** End of File. */
012 int EOF = 0;
013 /** RegularExpression Id. */
014 int ARRAY_BEGIN = 5;
015 /** RegularExpression Id. */
016 int ARRAY_END = 6;
017 /** RegularExpression Id. */
018 int ARRAY_SEPARATOR = 7;
019 /** RegularExpression Id. */
020 int DICT_BEGIN = 8;
021 /** RegularExpression Id. */
022 int DICT_END = 9;
023 /** RegularExpression Id. */
024 int DICT_SEPARATOR = 10;
025 /** RegularExpression Id. */
026 int EQUAL = 11;
027 /** RegularExpression Id. */
028 int DATA_START = 12;
029 /** RegularExpression Id. */
030 int DATA_END = 13;
031 /** RegularExpression Id. */
032 int DATE_START = 14;
033 /** RegularExpression Id. */
034 int QUOTE = 15;
035 /** RegularExpression Id. */
036 int LETTER = 16;
037 /** RegularExpression Id. */
038 int WHITE = 17;
039 /** RegularExpression Id. */
040 int HEXA = 18;
041 /** RegularExpression Id. */
042 int DATA = 19;
043 /** RegularExpression Id. */
044 int DATE = 20;
045 /** RegularExpression Id. */
046 int STRING = 21;
047 /** RegularExpression Id. */
048 int QUOTED_STRING = 22;
049 /** RegularExpression Id. */
050 int ESCAPED_QUOTE = 23;
051
052 /** Lexical state. */
053 int DEFAULT = 0;
054
055 /** Literal token values. */
056 String[] tokenImage = {
057 "<EOF>",
058 "\" \"",
059 "\"\\t\"",
060 "\"\\n\"",
061 "\"\\r\"",
062 "\"(\"",
063 "\")\"",
064 "\",\"",
065 "\"{\"",
066 "\"}\"",
067 "\";\"",
068 "\"=\"",
069 "\"<\"",
070 "\">\"",
071 "\"<*D\"",
072 "\"\\\"\"",
073 "<LETTER>",
074 "<WHITE>",
075 "<HEXA>",
076 "<DATA>",
077 "<DATE>",
078 "<STRING>",
079 "<QUOTED_STRING>",
080 "\"\\\\\\\"\"",
081 };
082
083 }