FileDocCategorySizeDatePackage
DeleteNode.javaAPI DocGlassfish v2 API2691Tue May 22 16:54:36 BST 2007oracle.toplink.essentials.internal.parsing

DeleteNode

public class DeleteNode extends ModifyNode
INTERNAL: DeleteNode is a ModifyNode that represents an DeleteAllQuery

Fields Summary
Constructors Summary
Methods Summary
public oracle.toplink.essentials.queryframework.DatabaseQuerycreateDatabaseQuery(oracle.toplink.essentials.internal.parsing.ParseTreeContext context)
INTERNAL Returns a DatabaseQuery instance representing the owning ParseTree. This implementation returns a DeleteAllQuery instance.

        DeleteAllQuery query = new DeleteAllQuery();
        query.setShouldDeferExecutionInUOW(false);
        return query;
    
public booleanisDeleteNode()

        return true;