public class ComplexQueryResult extends 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.
Modifier and Type | Field and Description |
---|---|
protected Object |
data |
protected Object |
result |
Constructor and Description |
---|
ComplexQueryResult() |
Modifier and Type | Method and Description |
---|---|
Object |
getData()
PUBLIC:
Return the database rows for the query result.
|
Object |
getResult()
PUBLIC:
Return the result of the query.
|
void |
setData(Object data)
INTERNAL:
Set the database rows for the query result.
|
void |
setResult(Object result)
INTERNAL:
Set the result of the query.
|
public Object getData()
public Object getResult()
public void setData(Object data)
public void setResult(Object result)
Copyright © 2007–2021 Eclipse.org - EclipseLink Project. All rights reserved.