FileDocCategorySizeDatePackage
ExpectedTypeAwareNode.javaAPI DocHibernate 3.2.5387Thu Jun 08 16:04:46 BST 2006org.hibernate.hql.ast.tree

ExpectedTypeAwareNode.java

package org.hibernate.hql.ast.tree;

import org.hibernate.type.Type;

/**
 * Interface for nodes which wish to be made aware of any determined "expected
 * type" based on the context within they appear in the query.
 *
 * @author Steve Ebersole
 */
public interface ExpectedTypeAwareNode {
	public void setExpectedType(Type expectedType);
	public Type getExpectedType();
}