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 com.sun.source.tree.Tree |
tree |
| Constructor and Description |
|---|
FieldAccessNode(com.sun.source.tree.Tree tree,
Node receiver) |
FieldAccessNode(com.sun.source.tree.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() |
com.sun.source.tree.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, setLValueprotected com.sun.source.tree.Tree tree
protected javax.lang.model.element.VariableElement element
protected java.lang.String field
protected Node receiver
public FieldAccessNode(com.sun.source.tree.Tree tree,
Node receiver)
public FieldAccessNode(com.sun.source.tree.Tree tree,
javax.lang.model.element.VariableElement element,
Node receiver)
public javax.lang.model.element.VariableElement getElement()
public Node getReceiver()
public java.lang.String getFieldName()
public com.sun.source.tree.Tree getTree()
NodeTree 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)
Nodepublic java.lang.String toString()
toString in class java.lang.Objectpublic boolean isStatic()
public boolean equals(java.lang.Object obj)
equals in class java.lang.Objectpublic int hashCode()
hashCode in class java.lang.Objectpublic java.util.Collection<Node> getOperands()
getOperands in class NodeNodes of this Node.