Open Source Repository

Home /hibernate/hibernate-3.2.7.ga | Repository Home



org/hibernate/hql/ast/tree/UnaryOperatorNode.java
package org.hibernate.hql.ast.tree;

/**
 * Contract for nodes representing unary operators.
 *
 @author <a href="mailto:[email protected]">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();
}