1 4 5 6 7 package com.tc.aspectwerkz.expression.ast; 8 9 public interface ExpressionParserTreeConstants { 10 public int JJTROOT = 0; 11 public int JJTEXPRESSION = 1; 12 public int JJTVOID = 2; 13 public int JJTAND = 3; 14 public int JJTOR = 4; 15 public int JJTNOT = 5; 16 public int JJTPOINTCUTREFERENCE = 6; 17 public int JJTEXECUTION = 7; 18 public int JJTCALL = 8; 19 public int JJTSET = 9; 20 public int JJTGET = 10; 21 public int JJTHANDLER = 11; 22 public int JJTWITHIN = 12; 23 public int JJTWITHINCODE = 13; 24 public int JJTSTATICINITIALIZATION = 14; 25 public int JJTCLASSPATTERN = 15; 26 public int JJTCFLOW = 16; 27 public int JJTCFLOWBELOW = 17; 28 public int JJTARGS = 18; 29 public int JJTHASMETHOD = 19; 30 public int JJTHASFIELD = 20; 31 public int JJTTARGET = 21; 32 public int JJTTHIS = 22; 33 public int JJTIF = 23; 34 public int JJTMETHODPATTERN = 24; 35 public int JJTCONSTRUCTORPATTERN = 25; 36 public int JJTFIELDPATTERN = 26; 37 public int JJTPARAMETER = 27; 38 public int JJTARGPARAMETER = 28; 39 public int JJTATTRIBUTE = 29; 40 public int JJTMODIFIER = 30; 41 42 43 public String [] jjtNodeName = { 44 "Root", 45 "Expression", 46 "void", 47 "And", 48 "Or", 49 "Not", 50 "PointcutReference", 51 "Execution", 52 "Call", 53 "Set", 54 "Get", 55 "Handler", 56 "Within", 57 "WithinCode", 58 "StaticInitialization", 59 "ClassPattern", 60 "Cflow", 61 "CflowBelow", 62 "Args", 63 "HasMethod", 64 "HasField", 65 "Target", 66 "This", 67 "If", 68 "MethodPattern", 69 "ConstructorPattern", 70 "FieldPattern", 71 "Parameter", 72 "ArgParameter", 73 "Attribute", 74 "Modifier", 75 }; 76 } 77 | Popular Tags |