Home » openjdk-7 » com.sun.source » tree » [javadoc | source]
com.sun.source.tree
public interface: BinaryTree [javadoc | source]

All Implemented Interfaces:
    ExpressionTree

All Known Implementing Classes:
    JCBinary

A tree node for a binary expression. Use getKind to determine the kind of operator. For example:
  leftOperand operator rightOperand
Method from com.sun.source.tree.BinaryTree Summary:
getLeftOperand,   getRightOperand
Method from com.sun.source.tree.BinaryTree Detail:
 public ExpressionTree getLeftOperand()
 public ExpressionTree getRightOperand()