com.sun.source.tree
Interface BinaryTree

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

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