Uses of Interface
com.sun.source.tree.VariableTree
Packages that use VariableTree
Package
Description
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 VariableTreeModifier and TypeMethodDescriptionCatchTree.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 VariableTreeModifier and TypeMethodDescriptionList
<? 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 VariableTreeModifier and TypeMethodDescriptionTreeVisitor.visitVariable
(VariableTree node, P p) Visits aVariableTree
node. -
Uses of VariableTree in com.sun.source.util
Methods in com.sun.source.util with parameters of type VariableTreeModifier and TypeMethodDescriptionSimpleTreeVisitor.visitVariable
(VariableTree node, P p) Visits aVariableTree
node.TreeScanner.visitVariable
(VariableTree node, P p) Visits aVariableTree
node.