| com.mobixess.jodb.soda.api.Candidate
All known Subclasses: com.mobixess.jodb.core.query.CandidateImpl,
Candidate | public interface Candidate (Code) | | candidate for
Evaluation callbacks.
During
all registered
Evaluation callback handlers are called with
Candidate proxies that represent the persistent objects
that meet all other
Query criteria.
A
Candidate provides access to the persistent object it
represents and allows to specify, whether it is to be included in the
ObjectSet resultset.
|
Method Summary | |
public Object | getObject() returns the persistent object that is represented by this query
Candidate . | public void | include(boolean flag) specify whether the Candidate is to be included in the
ObjectSet resultset.
This method may be called multiple times. |
getObject | public Object getObject()(Code) | | returns the persistent object that is represented by this query
Candidate .
Object the persistent object. |
include | public void include(boolean flag)(Code) | | specify whether the Candidate is to be included in the
ObjectSet resultset.
This method may be called multiple times. The last call prevails.
Parameters: flag - inclusion. |
|
|