parser
Class AST_IdentList

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

public class AST_IdentList
extends SimpleNode

Dynamic list of table or column identifiers.


Field Summary
protected  java.util.ArrayList<java.lang.String> names
          Names of the columns/tables.
 
Fields inherited from class parser.SimpleNode
children, id, parent, parser
 
Constructor Summary
AST_IdentList(int id)
           
AST_IdentList(MiniSql p, int id)
           
 
Method Summary
 java.lang.String[] getNames()
          Gets the names of the columns/tables.
 
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

names

protected java.util.ArrayList<java.lang.String> names
Names of the columns/tables.

Constructor Detail

AST_IdentList

public AST_IdentList(int id)

AST_IdentList

public AST_IdentList(MiniSql p,
                     int id)
Method Detail

getNames

public java.lang.String[] getNames()
Gets the names of the columns/tables.