Package | Description |
---|---|
com.sun.source.tree |
Provides interfaces to represent source code as abstract syntax
trees (AST).
|
com.sun.source.util |
Provides utilities for operations on abstract syntax trees (AST).
|
Modifier and Type | Method and Description |
---|---|
VariableTree |
CatchTree.getParameter()
Returns the catch variable.
|
VariableTree |
MethodTree.getReceiverParameter()
Return an explicit receiver parameter ("this" parameter),
or
null if none. |
VariableTree |
EnhancedForLoopTree.getVariable()
Returns the control variable for the loop.
|
Modifier and Type | Method and Description |
---|---|
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.
|
Modifier and Type | Method and Description |
---|---|
R |
TreeVisitor.visitVariable(VariableTree node,
P p)
Visits a VariableTree node.
|
Modifier and Type | Method and Description |
---|---|
R |
SimpleTreeVisitor.visitVariable(VariableTree node,
P p)
Visits a VariableTree node.
|
R |
TreeScanner.visitVariable(VariableTree node,
P p)
Visits a VariableTree node.
|
Copyright © 2005, 2015, Oracle and/or its affiliates. All rights reserved.
DRAFT internal-b87