1 22 23 package org.jboss.annotation.factory.ast; 24 25 public interface AnnotationParserTreeConstants 26 { 27 public int JJTSTART = 0; 28 public int JJTANNOTATION = 1; 29 public int JJTSINGLEMEMBERVALUE = 2; 30 public int JJTMEMBERVALUEPAIRS = 3; 31 public int JJTMEMBERVALUEPAIR = 4; 32 public int JJTVOID = 5; 33 public int JJTMEMBERVALUEARRAYINITIALIZER = 6; 34 public int JJTIDENTIFIER = 7; 35 public int JJTSTRING = 8; 36 public int JJTCHAR = 9; 37 38 39 public String [] jjtNodeName = { 40 "Start", 41 "Annotation", 42 "SingleMemberValue", 43 "MemberValuePairs", 44 "MemberValuePair", 45 "void", 46 "MemberValueArrayInitializer", 47 "Identifier", 48 "String", 49 "Char", 50 }; 51 } 52 | Popular Tags |