Compiler Tree API

com.sun.source.tree
Interface AssignmentTree

All Superinterfaces:
ExpressionTree, Tree

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()

Compiler Tree API

Submit a bug or feature
Copyright © 2005, 2015, Oracle and/or its affiliates. All rights reserved.