public class ComplexQueryResult
extends java.lang.Object
Purpose: Used to return multiple sets of information from a query. This is used if the objects and rows are required to be returned.
Responsibilities: Hold both the result of the query and the row results.
| Constructor and Description | 
|---|
ComplexQueryResult()  | 
| Modifier and Type | Method and Description | 
|---|---|
java.lang.Object | 
getData()
PUBLIC: Return the database rows for the query result. 
 | 
java.lang.Object | 
getResult()
PUBLIC: Return the result of the query. 
 | 
void | 
setData(java.lang.Object data)
INTERNAL: Set the database rows for the query result. 
 | 
void | 
setResult(java.lang.Object result)
INTERNAL: Set the result of the query. 
 | 
public java.lang.Object getData()
public java.lang.Object getResult()
public void setData(java.lang.Object data)
public void setResult(java.lang.Object result)