- 
- All Superinterfaces:
 ExpressionTree,Tree
public interface CompoundAssignmentTree extends ExpressionTree
A tree node for compound assignment operator. UsegetKindto determine the kind of operator. For example:variable operator expression
- Since:
 - 9
 
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ExpressionTreegetExpression()Returns the right hand side (RHS) of this assignment.ExpressionTreegetVariable()Returns the left hand side (LHS) of this assignment.- 
Methods declared in interface jdk.nashorn.api.tree.Tree
accept, getEndPosition, getKind, getStartPosition 
 - 
 
 - 
 
- 
- 
Method Detail
- 
getVariable
ExpressionTree getVariable()
Returns the left hand side (LHS) of this assignment.- Returns:
 - left hand side (LHS) expression
 
 
- 
getExpression
ExpressionTree getExpression()
Returns the right hand side (RHS) of this assignment.- Returns:
 - right hand side (RHS) expression
 
 
 - 
 
 -