FileDocCategorySizeDatePackage
BinaryOperatorNode.javaAPI DocHibernate 3.2.5506Fri Oct 14 12:23:18 BST 2005org.hibernate.hql.ast.tree

BinaryOperatorNode.java

package org.hibernate.hql.ast.tree;

/**
 * Contract for nodes representing binary operators.
 *
 * @author <a href="mailto:steve@hibernate.org">Steve Ebersole </a>
 */
public interface BinaryOperatorNode extends OperatorNode {
	/**
	 * Retrieves the left-hand operand of the operator.
	 *
	 * @return The left-hand operand
	 */
	public Node getLeftHandOperand();

	/**
	 * Retrieves the right-hand operand of the operator.
	 *
	 * @return The right-hand operand
	 */
	public Node getRightHandOperand();
}