1 2 3 package org.objectweb.speedo.query.parser; 4 5 public interface SpeedoQLTreeConstants { 6 public int JJTSPEEDOQL = 0; 7 public int JJTSPEEDOPRIMARY = 1; 8 public int JJTPRIMARY = 2; 9 public int JJTVOID = 3; 10 public int JJTRELATIONALEXPRESSION = 4; 11 public int JJTADDITIVEEXPRESSION = 5; 12 public int JJTUNARYEXPRESSION = 6; 13 public int JJTCASTEXPRESSION = 7; 14 public int JJTARGUMENTLIST = 8; 15 public int JJTLITERAL = 9; 16 public int JJTTYPE = 10; 17 public int JJTQUALIFIEDNAME = 11; 18 19 20 public String [] jjtNodeName = { 21 "SpeedoQL", 22 "SpeedoPrimary", 23 "Primary", 24 "void", 25 "RelationalExpression", 26 "AdditiveExpression", 27 "UnaryExpression", 28 "CastExpression", 29 "ArgumentList", 30 "Literal", 31 "Type", 32 "QualifiedName", 33 }; 34 } 35 | Popular Tags |