Package org.sonar.plugins.java.api.tree
Interface MethodInvocationTree
-
- All Superinterfaces:
ExpressionTree
,Tree
- All Known Implementing Classes:
MethodInvocationTreeImpl
@Beta public interface MethodInvocationTree extends ExpressionTree
Method invocation expression. JLS 15.12methodSelect()
(arguments()
) this .typeArguments()
methodSelect()
(arguments()
)- Since:
- Java 1.3
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Arguments
arguments()
ExpressionTree
methodSelect()
Symbol
symbol()
TypeArguments
typeArguments()
-
Methods inherited from interface org.sonar.plugins.java.api.tree.ExpressionTree
asConstant, asConstant, symbolType
-
-
-
-
Method Detail
-
typeArguments
@Nullable TypeArguments typeArguments()
- Since:
- Java 1.5
-
methodSelect
ExpressionTree methodSelect()
-
arguments
Arguments arguments()
-
symbol
Symbol symbol()
-
-