Uses of Interface
com.sun.source.tree.VariableTree
Packages that use VariableTree
包
描述
Provides interfaces to represent source code as abstract syntax
trees (AST).
Provides utilities for operations on abstract syntax trees (AST).
-
Uses of VariableTree in com.sun.source.tree
Methods in com.sun.source.tree that return VariableTree修饰符和类方法描述CatchTree.getParameter()
Returns the catch variable.MethodTree.getReceiverParameter()
Return an explicit receiver parameter ("this" parameter), ornull
if none.BindingPatternTree.getVariable()
Returns the binding variable.EnhancedForLoopTree.getVariable()
Returns the control variable for the loop.Methods in com.sun.source.tree that return types with arguments of type VariableTree修饰符和类方法描述List
<? extends VariableTree> LambdaExpressionTree.getParameters()
Returns the parameters of this lambda expression.List
<? extends VariableTree> MethodTree.getParameters()
Returns the parameters of the method being declared.Methods in com.sun.source.tree with parameters of type VariableTree -
Uses of VariableTree in com.sun.source.util
Methods in com.sun.source.util with parameters of type VariableTree修饰符和类方法描述SimpleTreeVisitor.visitVariable
(VariableTree node, P p) Visits aVariableTree
node.TreeScanner.visitVariable
(VariableTree node, P p) Visits aVariableTree
node.