Uses of Interface
com.sun.source.tree.VariableTree
-
Packages that use VariableTree 软件包 描述 com.sun.source.tree 提供将源代码表示为抽象语法树(AST)的接口。com.sun.source.util 为抽象语法树(AST)上的操作提供实用程序。 -
-
Uses of VariableTree in com.sun.source.tree
Methods in com.sun.source.tree that return VariableTree 变量和类型 方法 描述 VariableTree
CatchTree. getParameter()
返回catch变量。VariableTree
MethodTree. getReceiverParameter()
返回显式接收器参数(“this”参数),如果没有,则null
。VariableTree
EnhancedForLoopTree. getVariable()
返回循环的控制变量。Methods in com.sun.source.tree that return types with arguments of type VariableTree 变量和类型 方法 描述 List<? extends VariableTree>
LambdaExpressionTree. getParameters()
返回此lambda表达式的参数。List<? extends VariableTree>
MethodTree. getParameters()
返回正在声明的方法的参数。Methods in com.sun.source.tree with parameters of type VariableTree 变量和类型 方法 描述 R
TreeVisitor. visitVariable(VariableTree node, P p)
访问VariableTree节点。 -
Uses of VariableTree in com.sun.source.util
Methods in com.sun.source.util with parameters of type VariableTree 变量和类型 方法 描述 R
SimpleTreeVisitor. visitVariable(VariableTree node, P p)
访问VariableTree节点。R
TreeScanner. visitVariable(VariableTree node, P p)
访问VariableTree节点。
-