public QueryResult[] getResults() throws Exception {
return this.getResults(false);
}
public QueryResult[] getResults(final boolean oneTime) throws Exception {
final CollectAllResults cr = new CollectAllResults(oneTime);
this.result.addApplication(cr);
this.evaluateQuery();
return cr.getQueryResults();
}