1
2 package net.sourceforge.pmd.lang.jsp.ast;
3
4 public interface JspParserTreeConstants
5 {
6 public int JJTCOMPILATIONUNIT = 0;
7 public int JJTVOID = 1;
8 public int JJTCONTENT = 2;
9 public int JJTJSPDIRECTIVE = 3;
10 public int JJTJSPDIRECTIVEATTRIBUTE = 4;
11 public int JJTJSPSCRIPTLET = 5;
12 public int JJTJSPEXPRESSION = 6;
13 public int JJTJSPDECLARATION = 7;
14 public int JJTJSPCOMMENT = 8;
15 public int JJTTEXT = 9;
16 public int JJTUNPARSEDTEXT = 10;
17 public int JJTELEXPRESSION = 11;
18 public int JJTVALUEBINDING = 12;
19 public int JJTCDATA = 13;
20 public int JJTELEMENT = 14;
21 public int JJTATTRIBUTE = 15;
22 public int JJTATTRIBUTEVALUE = 16;
23 public int JJTJSPEXPRESSIONINATTRIBUTE = 17;
24 public int JJTCOMMENTTAG = 18;
25 public int JJTDECLARATION = 19;
26 public int JJTDOCTYPEDECLARATION = 20;
27 public int JJTDOCTYPEEXTERNALID = 21;
28 public int JJTHTMLSCRIPT = 22;
29
30
31 public String[] jjtNodeName = {
32 "CompilationUnit",
33 "void",
34 "Content",
35 "JspDirective",
36 "JspDirectiveAttribute",
37 "JspScriptlet",
38 "JspExpression",
39 "JspDeclaration",
40 "JspComment",
41 "Text",
42 "UnparsedText",
43 "ElExpression",
44 "ValueBinding",
45 "CData",
46 "Element",
47 "Attribute",
48 "AttributeValue",
49 "JspExpressionInAttribute",
50 "CommentTag",
51 "Declaration",
52 "DoctypeDeclaration",
53 "DoctypeExternalId",
54 "HtmlScript",
55 };
56 }
57