Uses of Class
org.bioquery.query.QueryLine

Packages that use QueryLine
org.bioquery.query A complete framework for modeling, storing, and submitting queries to mutliple different databases. 
 

Uses of QueryLine in org.bioquery.query
 

Methods in org.bioquery.query that return QueryLine
 QueryLine Query.addQueryLine()
          Add a new blank QueryLine at the next available position.
 QueryLine Query.getQueryLine(int lineNum)
          Returns a single QueryLine from the query.
 QueryLine[] Query.getAllQueryLines()
          Returns the entire query as an Array of QueryLine objects.
 QueryLine Query.getSubmitLine()
          returns the submitLine (the QueryLine designated as the one to be sent to the database).
 

Methods in org.bioquery.query with parameters of type QueryLine
static java.lang.String QuerySubmitter.parseQueryLine(QueryLine queryLine)
          Takes a QueryLine object and returns the queryText for that object with any references to other QueryLines fully expanded into the raw fields and boolean commands that make up the Query.
 void Query.setQueryLine(int lineNum, QueryLine queryLine)
          Assigns a QueryLine object to the designed line number.