Package org.eclipse.emf.cdo.server
Interface IStoreAccessor.QueryXRefsContext
- All Superinterfaces:
CDOBranchPoint
,CDOBranchProvider
,CDOTimeProvider
- Enclosing interface:
- IStoreAccessor
Represents the query execution state of a
XRefs query
.- Since:
- 3.0
- Author:
- Eike Stepper
- No Implement
- This interface is not intended to be implemented by clients.
-
Field Summary
Fields inherited from interface org.eclipse.emf.cdo.common.branch.CDOBranchPoint
INVALID_DATE, UNSPECIFIED_DATE
-
Method Summary
Modifier and TypeMethodDescriptionboolean
addXRef
(CDOID targetID, CDOID sourceID, EReference sourceReference, int sourceIndex) Adds the data of one cross reference to the results of the underlying query.int
Returns the maximum number of results expected by the client orCDOQueryInfo.UNLIMITED_RESULTS
for no limitation.Methods inherited from interface org.eclipse.emf.cdo.common.branch.CDOBranchPoint
getBranch, getTimeStamp
-
Method Details
-
getTargetObjects
- Since:
- 4.0
-
getSourceReferences
EReference[] getSourceReferences() -
getSourceCandidates
Map<EClass,List<EReference>> getSourceCandidates()- Since:
- 4.0
-
getMaxResults
int getMaxResults()Returns the maximum number of results expected by the client orCDOQueryInfo.UNLIMITED_RESULTS
for no limitation. -
addXRef
Adds the data of one cross reference to the results of the underlying query.- Returns:
true
to indicate that more results can be passed subsequently,false
otherwise (i.e. maxResults has been reached or an asynchronous query has been canceled).
-