Package org.sonar.java.model.expression
Class MethodInvocationTreeImpl
java.lang.Object
org.sonar.java.model.JavaTree
org.sonar.java.model.AbstractTypedTree
org.sonar.java.model.expression.AssessableExpressionTree
org.sonar.java.model.expression.MethodInvocationTreeImpl
- All Implemented Interfaces:
ExpressionTree,MethodInvocationTree,Tree
public class MethodInvocationTreeImpl
extends AssessableExpressionTree
implements MethodInvocationTree
-
Nested Class Summary
Nested classes/interfaces inherited from class org.sonar.java.model.JavaTree
JavaTree.AnnotatedTypeTree, JavaTree.ArrayTypeTreeImpl, JavaTree.CompilationUnitTreeImpl, JavaTree.ImportTreeImpl, JavaTree.NotImplementedTreeImpl, JavaTree.PackageDeclarationTreeImpl, JavaTree.ParameterizedTypeTreeImpl, JavaTree.PrimitiveTypeTreeImpl, JavaTree.UnionTypeTreeImpl, JavaTree.WildcardTreeImpl -
Field Summary
FieldsFields inherited from class org.sonar.java.model.AbstractTypedTree
typeBinding -
Constructor Summary
ConstructorsConstructorDescriptionMethodInvocationTreeImpl(ExpressionTree methodSelect, TypeArguments typeArguments, ArgumentListTreeImpl arguments) -
Method Summary
Modifier and TypeMethodDescriptionvoidaccept(TreeVisitor visitor) children()Creates iterable for children of this node.kind()symbol()Methods inherited from class org.sonar.java.model.expression.AssessableExpressionTree
asConstant, asConstantMethods inherited from class org.sonar.java.model.AbstractTypedTree
symbolTypeMethods inherited from class org.sonar.java.model.JavaTree
getChildren, getLine, is, isLeaf, lastToken, parent, setParentMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.sonar.plugins.java.api.tree.ExpressionTree
asConstant, asConstant, symbolType
-
Field Details
-
methodBinding
@Nullable public org.eclipse.jdt.core.dom.IMethodBinding methodBinding
-
-
Constructor Details
-
MethodInvocationTreeImpl
public MethodInvocationTreeImpl(ExpressionTree methodSelect, @Nullable TypeArguments typeArguments, ArgumentListTreeImpl arguments)
-
-
Method Details
-
kind
-
typeArguments
- Specified by:
typeArgumentsin interfaceMethodInvocationTree
-
firstToken
- Specified by:
firstTokenin interfaceTree- Overrides:
firstTokenin classJavaTree
-
methodSelect
- Specified by:
methodSelectin interfaceMethodInvocationTree
-
arguments
- Specified by:
argumentsin interfaceMethodInvocationTree
-
symbol
- Specified by:
symbolin interfaceMethodInvocationTree
-
methodSymbol
- Specified by:
methodSymbolin interfaceMethodInvocationTree
-
accept
-
children
Description copied from class:JavaTreeCreates iterable for children of this node. Note that iterable may containnullelements.
-