FileDocCategorySizeDatePackage
UpdateStatement.javaAPI DocHibernate 3.2.51112Tue Jul 12 15:27:30 BST 2005org.hibernate.hql.ast.tree

UpdateStatement

public class UpdateStatement extends AbstractRestrictableStatement
Defines a top-level AST node representing an HQL update statement.
author
Steve Ebersole

Fields Summary
private static final Log
log
Constructors Summary
Methods Summary
protected org.apache.commons.logging.LoggetLog()

		return log;
	
public antlr.collections.ASTgetSetClause()

		return ASTUtil.findTypeInChildren( this, HqlSqlTokenTypes.SET );
	
public intgetStatementType()

see
org.hibernate.hql.ast.tree.Statement#getStatementType()


	  	 
	   
		return SqlTokenTypes.UPDATE;
	
protected intgetWhereClauseParentTokenType()

		return SqlTokenTypes.SET;
	
public booleanneedsExecutor()

see
org.hibernate.hql.ast.tree.Statement#needsExecutor()

		return true;