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 Argumentsarguments()ExpressionTreemethodSelect()Symbolsymbol()TypeArgumentstypeArguments()-
Methods inherited from interface org.sonar.plugins.java.api.tree.ExpressionTree
symbolType
-
-
-
-
Method Detail
-
typeArguments
@Nullable TypeArguments typeArguments()
- Since:
- Java 1.5
-
methodSelect
ExpressionTree methodSelect()
-
arguments
Arguments arguments()
-
symbol
Symbol symbol()
-
-