1 2 3 package com.genimen.djeneric.tools.generator.core; 4 5 public interface DjentelParserEngineTreeConstants 6 { 7 public int JJTBUILDTREE = 0; 8 public int JJTVOID = 1; 9 public int JJTMODULEDEFINITION = 2; 10 public int JJTBODY = 3; 11 public int JJTCOMMENTSTATEMENT = 4; 12 public int JJTCONST = 5; 13 public int JJTSETSTATEMENT = 6; 14 public int JJTFORSTATEMENT = 7; 15 public int JJTFILTER = 8; 16 public int JJTORDERBY = 9; 17 public int JJTINDENT = 10; 18 public int JJTIFSTATEMENT = 11; 19 public int JJTELSESTATEMENT = 12; 20 public int JJTOBJECTPATH = 13; 21 public int JJTEXPRESSION = 14; 22 public int JJTANDOR = 15; 23 public int JJTSUBEXPRESSION = 16; 24 public int JJTCALCULATEDEXPRESSION = 17; 25 public int JJTOPERATOR = 18; 26 public int JJTPROPERTYORFUNCTION = 19; 27 public int JJTINTEGERLITERAL = 20; 28 public int JJTFLOATLITERAL = 21; 29 public int JJTCHARLITERAL = 22; 30 public int JJTSTRINGLITERAL = 23; 31 public int JJTBOOLLITERAL = 24; 32 public int JJTNULLLITERAL = 25; 33 public int JJTARGUMENTS = 26; 34 public int JJTFETCHUNSTRUCTURED = 27; 35 36 public String [] jjtNodeName = {"buildTree", "void", "ModuleDefinition", "Body", "CommentStatement", 37 "Const", "SetStatement", "ForStatement", "Filter", "OrderBy", "Indent", "IfStatement", "ElseStatement", 38 "Objectpath", "Expression", "AndOr", "SubExpression", "CalculatedExpression", "Operator", "PropertyOrFunction", 39 "integerLiteral", "floatLiteral", "charLiteral", "stringLiteral", "boolLiteral", "nullLiteral", "Arguments", 40 "FetchUnstructured", }; 41 } | Popular Tags |