parser
Class AST_Delete
java.lang.Object
parser.SimpleNode
parser.AST_Delete
- All Implemented Interfaces:
- Node
public class AST_Delete
- extends SimpleNode
AST node for DELETE statements.
Field Summary |
protected java.lang.String |
fileName
Name of the table to delete from. |
Method Summary |
java.lang.String |
getFileName()
Gets the name of the table to delete from. |
Predicate[][] |
getPredicates()
Gets the WHERE clause predicates in Conjunctive Normal Form (a.k.a. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
fileName
protected java.lang.String fileName
- Name of the table to delete from.
AST_Delete
public AST_Delete(int id)
AST_Delete
public AST_Delete(MiniSql p,
int id)
getFileName
public java.lang.String getFileName()
- Gets the name of the table to delete from.
getPredicates
public Predicate[][] getPredicates()
- Gets the WHERE clause predicates in Conjunctive Normal Form (a.k.a. product
of sums, i.e. AND expression of OR expressions).