01: /* Generated By:JavaCC: Do not edit this line. ArchiveParserConstants.java */
02: package org.apache.commons.jrcs.rcs;
03:
04: public interface ArchiveParserConstants {
05:
06: int EOF = 0;
07: int ACCESS = 6;
08: int AUTHOR = 7;
09: int BRANCH = 8;
10: int BRANCHES = 9;
11: int COMMENT = 10;
12: int DATE = 11;
13: int DESC = 12;
14: int EXPAND = 13;
15: int HEAD = 14;
16: int LOCKS = 15;
17: int LOG = 16;
18: int NEXT = 17;
19: int STATE = 18;
20: int STRICT = 19;
21: int SYMBOLS = 20;
22: int TEXT = 21;
23: int ID = 22;
24: int SYM = 23;
25: int STRING = 24;
26: int IDCHAR = 25;
27: int DIGIT = 26;
28: int NUM = 27;
29:
30: int DEFAULT = 0;
31: int PRE_DELTA = 1;
32:
33: String[] tokenImage = { "<EOF>", "\" \"", "\"\\n\"", "\"\\t\"",
34: "\"\\r\"", "\"\\f\"", "\"access\"", "\"author\"",
35: "\"branch\"", "\"branches\"", "\"comment\"", "\"date\"",
36: "\"desc\"", "\"expand\"", "\"head\"", "\"locks\"",
37: "\"log\"", "\"next\"", "\"state\"", "\"strict\"",
38: "\"symbols\"", "\"text\"", "<ID>", "<SYM>", "<STRING>",
39: "<IDCHAR>", "<DIGIT>", "<NUM>", "\";\"", "\":\"", "\".\"", };
40:
41: }
|