Uses of Interface
com.sun.source.tree.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
Modifier 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.Modifier 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.Modifier and TypeMethodDescriptionTreeVisitor.visitVariable
(VariableTree node, P p) Visits aVariableTree
node. -
Uses of VariableTree in com.sun.source.util
Modifier and TypeMethodDescriptionSimpleTreeVisitor.visitVariable
(VariableTree node, P p) Visits aVariableTree
node.TreeScanner.visitVariable
(VariableTree node, P p) Visits aVariableTree
node.