getLeft()
getRight()
131132133134135136137138139140141
protected ASTree getInitAST() { return null; } /* Called by CtClassType.addField(). */ Initializer getInit() { ASTree tree = getInitAST(); if (tree == null) return null; else return Initializer.byExpr(tree); }
893894895896897898899900901902903
drv.compileExpr(expression); } int getConstantValue(ConstPool cp, CtClass type) { try { ASTree t = Javac.parseExpr(expression, new SymbolTable()); return getConstantValue2(cp, type, t); } catch (CompileError e) { return 0; }
917918919920921922923924925926927
130131132133134135136137138139140
890891892893894895896897898899900
852853854855856857858859860861862
132133134135136137138139140141142
827828829830831832833834835836837