parser
Class AST_Delete

java.lang.Object
  extended by parser.SimpleNode
      extended by 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.
 
Fields inherited from class parser.SimpleNode
children, id, parent, parser
 
Constructor Summary
AST_Delete(int id)
           
AST_Delete(MiniSql p, int id)
           
 
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 parser.SimpleNode
dump, jjtAddChild, jjtClose, jjtGetChild, jjtGetNumChildren, jjtGetParent, jjtOpen, jjtSetParent, toString, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

fileName

protected java.lang.String fileName
Name of the table to delete from.

Constructor Detail

AST_Delete

public AST_Delete(int id)

AST_Delete

public AST_Delete(MiniSql p,
                  int id)
Method Detail

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).