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

UnaryLogicOperatorNode

public class UnaryLogicOperatorNode extends SqlNode implements UnaryOperatorNode
author
Steve Ebersole

Fields Summary
Constructors Summary
Methods Summary
public org.hibernate.type.TypegetDataType()

		// logic operators by definition resolve to booleans
		return Hibernate.BOOLEAN;
	
public NodegetOperand()

		return ( Node ) getFirstChild();
	
public voidinitialize()

		// nothing to do; even if the operand is a parameter, no way we could
		// infer an appropriate expected type here