Compiler Tree API

com.sun.source.tree
Interface BinaryTree

All Superinterfaces:
ExpressionTree, Tree

public interface BinaryTree
extends ExpressionTree

A tree node for a binary expression. Use getKind to determine the kind of operator. For example:

   leftOperand operator rightOperand
 

Since:
1.6
See Also:
"The Java Language Specification, 3rd ed, sections 15.17 to 15.24"

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

Method Detail

getLeftOperand

ExpressionTree getLeftOperand()

getRightOperand

ExpressionTree getRightOperand()

Compiler Tree API

Submit a bug or feature

Copyright 2010 Sun Microsystems, Inc. All rights reserved. Use is subject to the terms of the GNU General Public License.