1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18 package org.seasar.tuigwaa.cms.core.wiki.engine;
19
20 public interface WikiParserTreeConstants
21 {
22 public int JJTSYNTAXERROR = 0;
23 public int JJTSKIPTONEWLINE = 1;
24 public int JJTGENERATETREE = 2;
25 public int JJTVOID = 3;
26 public int JJTPARAGRAPH = 4;
27 public int JJTEXCERPT = 5;
28 public int JJTLIST = 6;
29 public int JJTLISTMEMBER = 7;
30 public int JJTDEFINELIST = 8;
31 public int JJTDEFINEDWORD = 9;
32 public int JJTEXPLANATIONWORD = 10;
33 public int JJTPRESHAPED = 11;
34 public int JJTTABLE = 12;
35 public int JJTTABLECOLUMN = 13;
36 public int JJTTABLEMEMBER = 14;
37 public int JJTCSVTABLE = 15;
38 public int JJTHEADING = 16;
39 public int JJTALIGN = 17;
40 public int JJTFLOATALIGN = 18;
41 public int JJTHORIZONTALLINE = 19;
42 public int JJTBLOCKPLUGIN = 20;
43 public int JJTLETTERS = 21;
44 public int JJTANYOTHER = 22;
45 public int JJTSTRONGITALIC = 23;
46 public int JJTDELETELINE = 24;
47 public int JJTANNOTATION = 25;
48 public int JJTINTERWIKI = 26;
49 public int JJTLINK = 27;
50 public int JJTALIAS = 28;
51 public int JJTPAGENAME = 29;
52 public int JJTINLINEPLUGIN = 30;
53 public int JJTARGS = 31;
54 public int JJTERRORS = 32;
55
56
57 public String[] jjtNodeName = {
58 "SyntaxError",
59 "SkipToNewline",
60 "GenerateTree",
61 "void",
62 "Paragraph",
63 "Excerpt",
64 "List",
65 "ListMember",
66 "DefineList",
67 "DefinedWord",
68 "ExplanationWord",
69 "Preshaped",
70 "Table",
71 "Tablecolumn",
72 "Tablemember",
73 "CSVTable",
74 "Heading",
75 "Align",
76 "FloatAlign",
77 "Horizontalline",
78 "BlockPlugin",
79 "Letters",
80 "AnyOther",
81 "StrongItalic",
82 "Deleteline",
83 "Annotation",
84 "Interwiki",
85 "Link",
86 "Alias",
87 "Pagename",
88 "InlinePlugin",
89 "Args",
90 "Errors",
91 };
92 }