File
Doc
Category
Size
Date
Package
BinaryTree.java
API Doc
Java SE 6 API
854
Tue Jun 10 00:23:24 BST 2008
com.sun.source.tree
BinaryTree
public interface BinaryTree implements ExpressionTree
A tree node for a binary expression. Use {@link #getKind getKind} to determine the kind of operator. For example:
leftOperand
operator
rightOperand
see
"The Java Language Specification, 3rd ed, sections 15.17 to 15.24"
author
Peter von der Ahé
author
Jonathan Gibbons
since
1.6
Fields Summary
Constructors Summary
Methods Summary
public
com.sun.source.tree.ExpressionTree
getLeftOperand
()
public
com.sun.source.tree.ExpressionTree
getRightOperand
()
Java Code Source