| java.lang.Object com.sun.source.util.SimpleTreeVisitor
SimpleTreeVisitor | public class SimpleTreeVisitor implements TreeVisitor<R, P>(Code) | | A simple visitor for tree nodes.
author: Peter von der Ahé since: 1.6 |
Method Summary | |
protected R | defaultAction(Tree node, P p) | final public R | visit(Tree node, P p) | final public R | visit(Iterable<? extends Tree> nodes, P p) | public R | visitAnnotation(AnnotationTree node, P p) | public R | visitArrayAccess(ArrayAccessTree node, P p) | public R | visitArrayType(ArrayTypeTree node, P p) | public R | visitAssert(AssertTree node, P p) | public R | visitAssignment(AssignmentTree node, P p) | public R | visitBinary(BinaryTree node, P p) | public R | visitBlock(BlockTree node, P p) | public R | visitBreak(BreakTree node, P p) | public R | visitCase(CaseTree node, P p) | public R | visitCatch(CatchTree node, P p) | public R | visitClass(ClassTree node, P p) | public R | visitCompilationUnit(CompilationUnitTree node, P p) | public R | visitCompoundAssignment(CompoundAssignmentTree node, P p) | public R | visitConditionalExpression(ConditionalExpressionTree node, P p) | public R | visitContinue(ContinueTree node, P p) | public R | visitDoWhileLoop(DoWhileLoopTree node, P p) | public R | visitEmptyStatement(EmptyStatementTree node, P p) | public R | visitEnhancedForLoop(EnhancedForLoopTree node, P p) | public R | visitErroneous(ErroneousTree node, P p) | public R | visitExpressionStatement(ExpressionStatementTree node, P p) | public R | visitForLoop(ForLoopTree node, P p) | public R | visitIdentifier(IdentifierTree node, P p) | public R | visitIf(IfTree node, P p) | public R | visitImport(ImportTree node, P p) | public R | visitInstanceOf(InstanceOfTree node, P p) | public R | visitLabeledStatement(LabeledStatementTree node, P p) | public R | visitLiteral(LiteralTree node, P p) | public R | visitMemberSelect(MemberSelectTree node, P p) | public R | visitMethod(MethodTree node, P p) | public R | visitMethodInvocation(MethodInvocationTree node, P p) | public R | visitModifiers(ModifiersTree node, P p) | public R | visitNewArray(NewArrayTree node, P p) | public R | visitNewClass(NewClassTree node, P p) | public R | visitOther(Tree node, P p) | public R | visitParameterizedType(ParameterizedTypeTree node, P p) | public R | visitParenthesized(ParenthesizedTree node, P p) | public R | visitPrimitiveType(PrimitiveTypeTree node, P p) | public R | visitReturn(ReturnTree node, P p) | public R | visitSwitch(SwitchTree node, P p) | public R | visitSynchronized(SynchronizedTree node, P p) | public R | visitThrow(ThrowTree node, P p) | public R | visitTry(TryTree node, P p) | public R | visitTypeCast(TypeCastTree node, P p) | public R | visitTypeParameter(TypeParameterTree node, P p) | public R | visitUnary(UnaryTree node, P p) | public R | visitVariable(VariableTree node, P p) | public R | visitWhileLoop(WhileLoopTree node, P p) | public R | visitWildcard(WildcardTree node, P p) |
DEFAULT_VALUE | final protected R DEFAULT_VALUE(Code) | | |
SimpleTreeVisitor | protected SimpleTreeVisitor()(Code) | | |
SimpleTreeVisitor | protected SimpleTreeVisitor(R defaultValue)(Code) | | |
defaultAction | protected R defaultAction(Tree node, P p)(Code) | | |
visitOther | public R visitOther(Tree node, P p)(Code) | | |
|
|