public class MethodInvocationNode extends Node
target(arg1, arg2, ...)CFGs may contain
MethodInvocationNode
s that correspond to no AST Tree
, in which
case, the tree field will be null.Modifier and Type | Field and Description |
---|---|
protected List<Node> |
arguments |
protected MethodAccessNode |
target |
protected MethodInvocationTree |
tree |
protected TreePath |
treePath |
Constructor and Description |
---|
MethodInvocationNode(MethodAccessNode target,
List<Node> arguments,
TreePath treePath) |
MethodInvocationNode(MethodInvocationTree tree,
MethodAccessNode target,
List<Node> arguments,
TreePath treePath) |
Modifier and Type | Method and Description |
---|---|
<R,P> R |
accept(NodeVisitor<R,P> visitor,
P p)
Accept method of the visitor pattern
|
boolean |
equals(Object obj) |
Node |
getArgument(int i) |
List<Node> |
getArguments() |
Collection<Node> |
getOperands() |
MethodAccessNode |
getTarget() |
MethodInvocationTree |
getTree()
Returns the
Tree in the abstract syntax tree, or null if no corresponding
tree exists. |
TreePath |
getTreePath() |
int |
hashCode() |
String |
toString() |
getAssignmentContext, getBlock, getInSource, getTransitiveOperands, getType, isLValue, setAssignmentContext, setBlock, setInSource, setLValue
protected final MethodInvocationTree tree
protected final MethodAccessNode target
protected final TreePath treePath
public MethodInvocationNode(MethodInvocationTree tree, MethodAccessNode target, List<Node> arguments, TreePath treePath)
public MethodInvocationNode(MethodAccessNode target, List<Node> arguments, TreePath treePath)
public MethodAccessNode getTarget()
public Node getArgument(int i)
public TreePath getTreePath()
public MethodInvocationTree getTree()
Node
Tree
in the abstract syntax tree, or null
if no corresponding
tree exists. For instance, this is the case for an ImplicitThisLiteralNode
.public <R,P> R accept(NodeVisitor<R,P> visitor, P p)
Node
public Collection<Node> getOperands()
getOperands
in class Node
Node
s of this Node
.