parser
Class AST_CreateIndex

java.lang.Object
  extended by parser.SimpleNode
      extended by parser.AST_CreateIndex
All Implemented Interfaces:
Node

public class AST_CreateIndex
extends SimpleNode

AST node for CREATE INDEX statements.


Field Summary
protected  java.lang.String fileName
          Name of the index to create.
protected  java.lang.String ixColumn
          Name of the column to index.
protected  java.lang.String ixTable
          Name of the table to index.
 
Fields inherited from class parser.SimpleNode
children, id, parent, parser
 
Constructor Summary
AST_CreateIndex(int id)
           
AST_CreateIndex(MiniSql p, int id)
           
 
Method Summary
 java.lang.String getFileName()
          Gets the name of the index to create.
 java.lang.String getIxColumn()
          Gets the name of the column to index.
 java.lang.String getIxTable()
          Gets the name of the table to index.
 
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 index to create.


ixTable

protected java.lang.String ixTable
Name of the table to index.


ixColumn

protected java.lang.String ixColumn
Name of the column to index.

Constructor Detail

AST_CreateIndex

public AST_CreateIndex(int id)

AST_CreateIndex

public AST_CreateIndex(MiniSql p,
                       int id)
Method Detail

getFileName

public java.lang.String getFileName()
Gets the name of the index to create.


getIxTable

public java.lang.String getIxTable()
Gets the name of the table to index.


getIxColumn

public java.lang.String getIxColumn()
Gets the name of the column to index.