PageRenderTime 41ms CodeModel.GetById 16ms RepoModel.GetById 0ms app.codeStats 0ms

/bundles/plugins-trunk/XML/xml/parser/javacc/XmlParserConstants.java

#
Java | 86 lines | 80 code | 5 blank | 1 comment | 0 complexity | 4b272d9849eced337a5c66fa2536dc29 MD5 | raw file
Possible License(s): BSD-3-Clause, AGPL-1.0, Apache-2.0, LGPL-2.0, LGPL-3.0, GPL-2.0, CC-BY-SA-3.0, LGPL-2.1, GPL-3.0, MPL-2.0-no-copyleft-exception, IPL-1.0
  1. /* Generated By:JavaCC: Do not edit this line. XmlParserConstants.java */
  2. package xml.parser.javacc;
  3. public interface XmlParserConstants {
  4. int EOF = 0;
  5. int ALPHA_CHAR = 1;
  6. int NUM_CHAR = 2;
  7. int ALPHANUM_CHAR = 3;
  8. int IDENTIFIER_CHAR = 4;
  9. int IDENTIFIER = 5;
  10. int QUOTED_STRING_NB = 6;
  11. int QUOTED_STRING = 7;
  12. int WHITESPACE = 8;
  13. int NEWLINE = 9;
  14. int QUOTE = 10;
  15. int EOL = 11;
  16. int COMMENT_START = 12;
  17. int ENDTAG_START = 13;
  18. int TAG_START = 14;
  19. int DECL_START = 15;
  20. int PCDATA = 16;
  21. int TAG_NAME = 18;
  22. int LST_ERROR = 19;
  23. int ATTR_NAME = 21;
  24. int TAG_END = 22;
  25. int TAG_SLASHEND = 23;
  26. int ATTR_EQ = 24;
  27. int IMPLICIT_TAG_END = 25;
  28. int LIT_ERROR = 26;
  29. int ATTR_VAL = 28;
  30. int LAV_ERROR = 29;
  31. int COMMENT_END = 30;
  32. int DASH = 31;
  33. int COMMENT_EOL = 32;
  34. int COMMENT_WORD = 33;
  35. int DECL_ANY = 34;
  36. int DECL_END = 35;
  37. int LexDecl = 0;
  38. int LexComment = 1;
  39. int LexAttrVal = 2;
  40. int LexInTag = 3;
  41. int LexStartTag = 4;
  42. int DEFAULT = 5;
  43. String[] tokenImage = {
  44. "<EOF>",
  45. "<ALPHA_CHAR>",
  46. "<NUM_CHAR>",
  47. "<ALPHANUM_CHAR>",
  48. "<IDENTIFIER_CHAR>",
  49. "<IDENTIFIER>",
  50. "<QUOTED_STRING_NB>",
  51. "<QUOTED_STRING>",
  52. "<WHITESPACE>",
  53. "<NEWLINE>",
  54. "<QUOTE>",
  55. "<EOL>",
  56. "<COMMENT_START>",
  57. "<ENDTAG_START>",
  58. "<TAG_START>",
  59. "\"<!\"",
  60. "<PCDATA>",
  61. "<token of kind 17>",
  62. "<TAG_NAME>",
  63. "<LST_ERROR>",
  64. "<token of kind 20>",
  65. "<ATTR_NAME>",
  66. "\">\"",
  67. "\"/>\"",
  68. "\"=\"",
  69. "\"<\"",
  70. "<LIT_ERROR>",
  71. "<token of kind 27>",
  72. "<ATTR_VAL>",
  73. "<LAV_ERROR>",
  74. "<COMMENT_END>",
  75. "\"-\"",
  76. "<COMMENT_EOL>",
  77. "<COMMENT_WORD>",
  78. "<DECL_ANY>",
  79. "\">\"",
  80. };
  81. }