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

UnaryOperatorNode.java

package org.hibernate.hql.ast.tree;

/**
 * Contract for nodes representing unary operators.
 *
 * @author <a href="mailto:steve@hibernate.org">Steve Ebersole </a>
 */
public interface UnaryOperatorNode extends OperatorNode {
	/**
	 * Retrievs the node representing the operator's single operand.
	 * 
	 * @return The operator's single operand.
	 */
	public Node getOperand();
}