com.sun.source.tree
Interface AssignmentTree

All Superinterfaces:
ExpressionTree, Tree
All Known Implementing Classes:
JCTree.JCAssign

public interface AssignmentTree
extends ExpressionTree

A tree node for an assignment expression. For example:

   variable = expression
 

Since:
1.6
See Also:
"The Java Language Specification, 3rd ed, section 15.26.1"

Nested Class Summary
 
Nested classes/interfaces inherited from interface com.sun.source.tree.Tree
Tree.Kind
 
Method Summary
 ExpressionTree getExpression()
           
 ExpressionTree getVariable()
           
 
Methods inherited from interface com.sun.source.tree.Tree
accept, getKind
 

Method Detail

getVariable

ExpressionTree getVariable()

getExpression

ExpressionTree getExpression()