edu.cmu.aura.service.query.parser
Class SelectClause

java.lang.Object
  |
  +--edu.cmu.aura.service.query.parser.SelectClause

public class SelectClause
extends java.lang.Object

Represents the select part of a query. Generally this class need not be used; Query.getSelectedAttributes() is generally used to get the information contained in this class.


Constructor Summary
SelectClause()
           
SelectClause(java.util.ArrayList selectedAttributes)
           
 
Method Summary
 void addAttribute(java.lang.String attribute)
           
 java.util.ArrayList getSelectedAttributes()
           
 void selectAllAttribs()
           
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

SelectClause

public SelectClause()

SelectClause

public SelectClause(java.util.ArrayList selectedAttributes)
Method Detail

addAttribute

public void addAttribute(java.lang.String attribute)

getSelectedAttributes

public java.util.ArrayList getSelectedAttributes()

selectAllAttribs

public void selectAllAttribs()

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object