public class StringConcatenateAssignmentNode extends Node
variable += expression
| Modifier and Type | Field and Description | 
|---|---|
protected Node | 
left  | 
protected Node | 
right  | 
protected com.sun.source.tree.Tree | 
tree  | 
| Constructor and Description | 
|---|
StringConcatenateAssignmentNode(com.sun.source.tree.Tree tree,
                               Node left,
                               Node right)  | 
| Modifier and Type | Method and Description | 
|---|---|
<R,P> R | 
accept(NodeVisitor<R,P> visitor,
      P p)
Accept method of the visitor pattern 
 | 
Node | 
getLeftOperand()  | 
java.util.Collection<Node> | 
getOperands()  | 
Node | 
getRightOperand()  | 
com.sun.source.tree.Tree | 
getTree()
Returns the  
Tree in the abstract syntax tree, or null if no corresponding
 tree exists. | 
getAssignmentContext, getBlock, getInSource, getTransitiveOperands, getType, isLValue, setAssignmentContext, setBlock, setInSource, setLValueprotected com.sun.source.tree.Tree tree
protected Node left
protected Node right
public Node getLeftOperand()
public Node getRightOperand()
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.util.Collection<Node> getOperands()
getOperands in class NodeNodes of this Node.