01: /* Generated By:JavaCC: Do not edit this line. HtmlExtractorParserConstants.java */
02: package com.flexive.extractor.htmlExtractor;
03:
04: public interface HtmlExtractorParserConstants {
05:
06: int EOF = 0;
07: int QUOTE = 13;
08: int EQUALS = 14;
09: int TITLE = 15;
10: int OPEN_TAG = 16;
11: int CLOSE_TAG = 17;
12: int STRING = 18;
13:
14: int DEFAULT = 0;
15: int WithinDoctype = 1;
16: int WithinComment = 2;
17: int WithinScript = 3;
18:
19: String[] tokenImage = { "<EOF>", "\"\\t\"", "\"\\n\"", "\"\\r\"",
20: "\"<script \"", "\"<!--\"", "\"<!DOCTYPE \"", "\">\"",
21: "<token of kind 8>", "\"-->\"", "<token of kind 10>",
22: "\"</script>\"", "<token of kind 12>", "<QUOTE>",
23: "<EQUALS>", "<TITLE>", "<OPEN_TAG>", "<CLOSE_TAG>",
24: "<STRING>", "\"<\"", };
25:
26: }
|