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