public class FieldAccessNode extends Node
expression . field
Modifier and Type | Field and Description |
---|---|
protected javax.lang.model.element.VariableElement |
element |
protected java.lang.String |
field |
protected Node |
receiver |
protected Tree |
tree |
Constructor and Description |
---|
FieldAccessNode(Tree tree,
Node receiver) |
FieldAccessNode(Tree tree,
javax.lang.model.element.VariableElement element,
Node receiver) |
Modifier and Type | Method and Description |
---|---|
<R,P> R |
accept(NodeVisitor<R,P> visitor,
P p)
Accept method of the visitor pattern
|
boolean |
equals(java.lang.Object obj) |
javax.lang.model.element.VariableElement |
getElement() |
java.lang.String |
getFieldName() |
java.util.Collection<Node> |
getOperands() |
Node |
getReceiver() |
Tree |
getTree()
Returns the
Tree in the abstract syntax tree, or null if no corresponding
tree exists. |
int |
hashCode() |
boolean |
isStatic()
Is this a static field?
|
java.lang.String |
toString() |
getAssignmentContext, getBlock, getInSource, getTransitiveOperands, getType, isLValue, setAssignmentContext, setBlock, setInSource, setLValue
protected final Tree tree
protected final javax.lang.model.element.VariableElement element
protected final java.lang.String field
protected final Node receiver
public javax.lang.model.element.VariableElement getElement()
public Node getReceiver()
public java.lang.String getFieldName()
public Tree 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 java.lang.String toString()
toString
in class java.lang.Object
public boolean isStatic()
public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
public int hashCode()
hashCode
in class java.lang.Object
public java.util.Collection<Node> getOperands()
getOperands
in class Node
Node
s of this Node
.