aboutsummaryrefslogtreecommitdiff
path: root/generated-sources/jjtree/org/apache/velocity/runtime/parser/node/StandardParserTreeConstants.java
blob: f6cdcb657e6eb76ac2003d871b729793cbd5e8c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/* Generated By:JavaCC: Do not edit this line. StandardParserTreeConstants.java Version 5.0 */
package org.apache.velocity.runtime.parser.node;

import org.apache.velocity.runtime.parser.*;

public interface StandardParserTreeConstants
{
  public int JJTPROCESS = 0;
  public int JJTVOID = 1;
  public int JJTTEXT = 2;
  public int JJTESCAPEDDIRECTIVE = 3;
  public int JJTESCAPE = 4;
  public int JJTCOMMENT = 5;
  public int JJTTEXTBLOCK = 6;
  public int JJTFLOATINGPOINTLITERAL = 7;
  public int JJTINTEGERLITERAL = 8;
  public int JJTSTRINGLITERAL = 9;
  public int JJTIDENTIFIER = 10;
  public int JJTWORD = 11;
  public int JJTDIRECTIVEASSIGN = 12;
  public int JJTDIRECTIVE = 13;
  public int JJTBLOCK = 14;
  public int JJTMAP = 15;
  public int JJTOBJECTARRAY = 16;
  public int JJTINTEGERRANGE = 17;
  public int JJTMETHOD = 18;
  public int JJTINDEX = 19;
  public int JJTREFERENCE = 20;
  public int JJTTRUE = 21;
  public int JJTFALSE = 22;
  public int JJTIFSTATEMENT = 23;
  public int JJTELSESTATEMENT = 24;
  public int JJTELSEIFSTATEMENT = 25;
  public int JJTSETDIRECTIVE = 26;
  public int JJTEXPRESSION = 27;
  public int JJTASSIGNMENT = 28;
  public int JJTORNODE = 29;
  public int JJTANDNODE = 30;
  public int JJTEQNODE = 31;
  public int JJTNENODE = 32;
  public int JJTLTNODE = 33;
  public int JJTGTNODE = 34;
  public int JJTLENODE = 35;
  public int JJTGENODE = 36;
  public int JJTADDNODE = 37;
  public int JJTSUBTRACTNODE = 38;
  public int JJTMULNODE = 39;
  public int JJTDIVNODE = 40;
  public int JJTMODNODE = 41;
  public int JJTNOTNODE = 42;
  public int JJTNEGATENODE = 43;


  public String[] jjtNodeName = {
    "process",
    "void",
    "Text",
    "EscapedDirective",
    "Escape",
    "Comment",
    "Textblock",
    "FloatingPointLiteral",
    "IntegerLiteral",
    "StringLiteral",
    "Identifier",
    "Word",
    "DirectiveAssign",
    "Directive",
    "Block",
    "Map",
    "ObjectArray",
    "IntegerRange",
    "Method",
    "Index",
    "Reference",
    "True",
    "False",
    "IfStatement",
    "ElseStatement",
    "ElseIfStatement",
    "SetDirective",
    "Expression",
    "Assignment",
    "OrNode",
    "AndNode",
    "EQNode",
    "NENode",
    "LTNode",
    "GTNode",
    "LENode",
    "GENode",
    "AddNode",
    "SubtractNode",
    "MulNode",
    "DivNode",
    "ModNode",
    "NotNode",
    "NegateNode",
  };
}
/* JavaCC - OriginalChecksum=3cbe37a416c36eb645df00e50cd4ad4d (do not edit this line) */