Uses of Interface
org.eclipse.emf.cdo.common.id.CDOID

Packages that use CDOID
org.eclipse.emf.cdo Client concepts like CDOObject and CDOState
org.eclipse.emf.cdo.common Common concepts that are differently extended in clients and servers. 
org.eclipse.emf.cdo.common.commit Common concepts for dealing with commits and change sets. 
org.eclipse.emf.cdo.common.id Common concepts for dealing with object and revision IDs. 
org.eclipse.emf.cdo.common.lock Common concepts for dealing with durable locks and views. 
org.eclipse.emf.cdo.common.protocol Common concepts for dealing with protocols and CDO-specific I/O. 
org.eclipse.emf.cdo.common.revision Common concepts for dealing with revisions and revision lists. 
org.eclipse.emf.cdo.common.revision.delta Common concepts for dealing with revision deltas and feature deltas. 
org.eclipse.emf.cdo.compare Client concepts for integrating EMF Compare with CDO. 
org.eclipse.emf.cdo.server Server concepts for dealing with repositories and stores. 
org.eclipse.emf.cdo.server.db Server concepts for dealing with DB stores and accessors. 
org.eclipse.emf.cdo.server.db.mapping Server concepts for dealing with mapping strategies and mappings for classes, lists and types. 
org.eclipse.emf.cdo.server.mem Server concepts for dealing with in-memory stores. 
org.eclipse.emf.cdo.server.ocl Server implementation of a generic OCL query handler. 
org.eclipse.emf.cdo.spi.common.commit Common service provider interfaces and useful base implementations for dealing with commits and change sets. 
org.eclipse.emf.cdo.spi.common.id Common service provider interfaces and useful base implementations for dealing with object and revision IDs. 
org.eclipse.emf.cdo.spi.common.model Common service provider interfaces and useful base implementations for dealing with models and types 
org.eclipse.emf.cdo.spi.common.protocol Common base implementations for dealing with I/O of CDO data structures. 
org.eclipse.emf.cdo.spi.common.revision Common service provider interfaces and useful base implementations for dealing with revisions and deltas. 
org.eclipse.emf.cdo.spi.server Server service provider interfaces and useful base implementations. 
org.eclipse.emf.cdo.spi.workspace Server provider interfaces (SPI) for CDO workspaces
org.eclipse.emf.cdo.transaction Client concepts for dealing with transactions, distributed transactions and their save points. 
org.eclipse.emf.cdo.util Client utility classes, some common interfaces and exceptions. 
org.eclipse.emf.cdo.view Client concepts for dealing with views, view sets, queries, CDO objects and EMF resource sets. 
org.eclipse.emf.cdo.workspace Concepts to checkout, open and further operate CDO workspaces
org.eclipse.emf.internal.cdo Exposes CDOObjectImpl for extension in generated EMF models. 
org.eclipse.emf.spi.cdo Client service provider interfaces and useful base implementations. 
 

Uses of CDOID in org.eclipse.emf.cdo
 

Methods in org.eclipse.emf.cdo that return CDOID
 CDOID CDOObject.cdoID()
          Returns the technical object identifier of this object, or null if the state of this object is TRANSIENT or INVALID.
 

Uses of CDOID in org.eclipse.emf.cdo.common
 

Methods in org.eclipse.emf.cdo.common that return CDOID
 CDOID CDOCommonRepository.getRootResourceID()
          Returns the ID of the root resource of this repository.
 

Uses of CDOID in org.eclipse.emf.cdo.common.commit
 

Methods in org.eclipse.emf.cdo.common.commit that return types with arguments of type CDOID
 Map<CDOID,CDOChangeKind> CDOChangeSetData.getChangeKinds()
           
 

Methods in org.eclipse.emf.cdo.common.commit with parameters of type CDOID
 CDOChangeKind CDOChangeKindProvider.getChangeKind(CDOID id)
           
 

Uses of CDOID in org.eclipse.emf.cdo.common.id
 

Subinterfaces of CDOID in org.eclipse.emf.cdo.common.id
 interface CDOIDExternal
          The ID of a CDO object that is external to a CDO repository.
 interface CDOIDObject
          The ID of a CDO object that is persistent in a CDO repository.
 interface CDOIDString
          A CDOID with a String value.
 interface CDOIDTemp
          The ID of a CDO object that is new in a dirty (uncommitted) CDO transaction.
 

Fields in org.eclipse.emf.cdo.common.id declared as CDOID
static CDOID CDOID.NULL
           
 

Methods in org.eclipse.emf.cdo.common.id that return CDOID
 CDOID CDOWithID.cdoID()
           
static CDOID CDOIDUtil.createLong(long value)
           
static CDOID CDOIDUtil.createLongWithClassifier(CDOClassifierRef classifierRef, long value)
          Deprecated. As of 4.2 use CDOIDUtil.createLongWithClassifier(long, CDOClassifierRef).
static CDOID CDOIDUtil.createLongWithClassifier(long value, CDOClassifierRef classifierRef)
           
static CDOID CDOIDUtil.createString(String value)
           
static CDOID CDOIDUtil.createStringWithClassifier(CDOClassifierRef classifierRef, String value)
          Deprecated. As of 4.2 use CDOIDUtil.createStringWithClassifier(String, CDOClassifierRef).
static CDOID CDOIDUtil.createStringWithClassifier(String value, CDOClassifierRef classifierRef)
           
static CDOID CDOIDUtil.createUUID()
           
static CDOID CDOIDUtil.createUUID(byte[] value)
           
 CDOID CDOIDGenerator.generateCDOID(EObject object)
          Generates a CDOID.
static CDOID CDOIDUtil.getCDOID(Object object)
           
 CDOID CDOIDReference.getSourceObject()
           
 CDOID CDOIDReference.getTargetObject()
           
 CDOID CDOIDProvider.provideCDOID(Object idOrObject)
           
static CDOID CDOIDUtil.read(CDODataInput in)
           
static CDOID CDOIDUtil.read(ExtendedDataInput in)
          Deprecated. As of 4.2 use CDOIDUtil.read(CDODataInput).
static CDOID CDOIDUtil.read(String uriFragment)
          Format of the URI fragment.
 

Methods in org.eclipse.emf.cdo.common.id that return types with arguments of type CDOID
static
<V> Map<CDOID,V>
CDOIDUtil.createMap()
           
 

Methods in org.eclipse.emf.cdo.common.id with parameters of type CDOID
static CDOIDAndBranch CDOIDUtil.createIDAndBranch(CDOID id, CDOBranch branch)
           
static CDOIDAndVersion CDOIDUtil.createIDAndVersion(CDOID id, int version)
           
static boolean CDOIDUtil.equals(CDOID id1, CDOID id2)
           
static byte[] CDOIDUtil.getByteArray(CDOID id)
           
static CDOClassifierRef CDOIDUtil.getClassifierRef(CDOID id)
           
static long CDOIDUtil.getLong(CDOID id)
           
static String CDOIDUtil.getString(CDOID id)
           
static boolean CDOIDUtil.isNull(CDOID id)
           
static void CDOIDUtil.write(CDODataOutput out, CDOID id)
           
static void CDOIDUtil.write(ExtendedDataOutput out, CDOID id)
          Deprecated. As of 4.2 use CDOIDUtil.write(CDODataOutput, CDOID).
static void CDOIDUtil.write(StringBuilder builder, CDOID id)
          Format of the uri fragment.
 

Constructors in org.eclipse.emf.cdo.common.id with parameters of type CDOID
CDOIDReference(CDOID targetID, CDOID sourceID, EStructuralFeature sourceFeature, int sourceIndex)
           
 

Uses of CDOID in org.eclipse.emf.cdo.common.lock
 

Methods in org.eclipse.emf.cdo.common.lock that return types with arguments of type CDOID
 Map<CDOID,IDurableLockingManager.LockGrade> IDurableLockingManager.LockArea.getLocks()
           
 

Method parameters in org.eclipse.emf.cdo.common.lock with type arguments of type CDOID
 IDurableLockingManager.LockArea IDurableLockingManager.createLockArea(String userID, CDOBranchPoint branchPoint, boolean readOnly, Map<CDOID,IDurableLockingManager.LockGrade> locks)
           
static IDurableLockingManager.LockArea CDOLockUtil.createLockArea(String durableLockingID, String userID, CDOBranchPoint branchPoint, boolean readOnly, Map<CDOID,IDurableLockingManager.LockGrade> locks)
           
 

Uses of CDOID in org.eclipse.emf.cdo.common.protocol
 

Methods in org.eclipse.emf.cdo.common.protocol that return CDOID
 CDOID CDODataInput.readCDOID()
           
 

Methods in org.eclipse.emf.cdo.common.protocol with parameters of type CDOID
 void CDODataOutput.writeCDOID(CDOID id)
           
 

Uses of CDOID in org.eclipse.emf.cdo.common.revision
 

Methods in org.eclipse.emf.cdo.common.revision that return CDOID
 CDOID CDOIDAndBranch.getID()
           
 CDOID CDOIDAndVersion.getID()
           
 CDOID CDORevisionData.getResourceID()
           
 

Methods in org.eclipse.emf.cdo.common.revision with parameters of type CDOID
 boolean CDORevisionManager.containsRevision(CDOID id, CDOBranchPoint branchPoint)
          Returns true if the revision cache contains a revision with the given ID at the given branch point (branch + timestamp), false otherwise.
 boolean CDORevisionManager.containsRevisionByVersion(CDOID id, CDOBranchVersion branchVersion)
          Returns true if the revision cache contains a revision with the given ID at the given branch version (branch + version), false otherwise.
static CDORevisionKey CDORevisionUtil.createRevisionKey(CDOID id, CDOBranch branch, int version)
           
 EClass CDORevisionCache.getObjectType(CDOID id)
           
 EClass CDORevisionManager.getObjectType(CDOID id)
          Returns the type of an object if a revision for that object is in the revision cache, null otherwise.
 EClass CDORevisionManager.getObjectType(CDOID id, CDOBranchManager branchManagerForLoadOnDemand)
          Returns the type of an object.
 CDORevision CDORevisionProvider.getRevision(CDOID id)
           
 CDORevision CDORevisionCache.getRevision(CDOID id, CDOBranchPoint branchPoint)
           
 CDORevision CDORevisionManager.getRevision(CDOID id, CDOBranchPoint branchPoint, int referenceChunk, int prefetchDepth, boolean loadOnDemand)
          Returns the revision with the given ID at the given branch point (branch + timestamp), optionally demand loading it if it is not already in the cache.
 CDORevision CDORevisionCache.getRevisionByVersion(CDOID id, CDOBranchVersion branchVersion)
           
 CDORevision CDORevisionManager.getRevisionByVersion(CDOID id, CDOBranchVersion branchVersion, int referenceChunk, boolean loadOnDemand)
          Returns the revision with the given ID at the given branch version (branch + version), optionally demand loading it if it is not already in the cache.
 

Method parameters in org.eclipse.emf.cdo.common.revision with type arguments of type CDOID
static CDOChangeSetData CDORevisionUtil.createChangeSetData(Set<CDOID> ids, CDOBranchPoint startPoint, CDOBranchPoint endPoint, CDORevisionManager revisionManager)
           
static CDOChangeSetData CDORevisionUtil.createChangeSetData(Set<CDOID> ids, CDORevisionProvider startProvider, CDORevisionProvider endProvider)
           
static CDOChangeSetData CDORevisionUtil.createChangeSetData(Set<CDOID> ids, CDORevisionProvider startProvider, CDORevisionProvider endProvider, boolean useStartVersions)
           
 List<CDORevision> CDORevisionManager.getRevisions(List<CDOID> ids, CDOBranchPoint branchPoint, int referenceChunk, int prefetchDepth, boolean loadOnDemand)
          Returns the revisions with the given IDs at the given branch point (branch + timestamp), optionally demand loading them if they are not already in the cache.
static Object CDORevisionUtil.remapID(Object value, Map<CDOID,CDOID> idMappings, boolean allowUnmappedTempIDs)
           
static Object CDORevisionUtil.remapID(Object value, Map<CDOID,CDOID> idMappings, boolean allowUnmappedTempIDs)
           
 

Uses of CDOID in org.eclipse.emf.cdo.common.revision.delta
 

Methods in org.eclipse.emf.cdo.common.revision.delta that return CDOID
 CDOID CDOContainerFeatureDelta.getResourceID()
           
 

Methods in org.eclipse.emf.cdo.common.revision.delta with parameters of type CDOID
 CDORevisionDelta CDORevisionDeltaProvider.getRevisionDelta(CDOID id)
           
 

Uses of CDOID in org.eclipse.emf.cdo.compare
 

Methods in org.eclipse.emf.cdo.compare with parameters of type CDOID
protected  void CDOComparisonScope.Minimal.collectRequiredParentID(CDOView view, CDOID id, Set<CDOID> requiredParentIDs)
           
 

Method parameters in org.eclipse.emf.cdo.compare with type arguments of type CDOID
protected  void CDOComparisonScope.Minimal.collectRequiredParentID(CDOView view, CDOID id, Set<CDOID> requiredParentIDs)
           
static Comparison CDOCompareUtil.compare(CDOView leftView, CDOView rightView, CDOView[] originView, Set<CDOID> ids)
           
static IComparisonScope CDOComparisonScope.Minimal.create(CDOView leftView, CDOView rightView, CDOView[] originView, Set<CDOID> ids)
           
 

Constructor parameters in org.eclipse.emf.cdo.compare with type arguments of type CDOID
CDOComparisonScope.Minimal(CDOView leftView, CDOView rightView, CDOView originView, Set<CDOID> ids)
           
 

Uses of CDOID in org.eclipse.emf.cdo.server
 

Methods in org.eclipse.emf.cdo.server that return CDOID
 CDOID IStore.createObjectID(String val)
           
 CDOID[] IStoreAccessor.CommitContext.getDetachedObjects()
          Returns an array of the removed object that are part of the commit operation represented by this CommitContext.
 CDOID IStoreAccessor.QueryResourcesContext.getFolderID()
           
 CDOID IStoreAccessor.QueryResourcesContext.ExactMatch.getResourceID()
           
 CDOID IStoreAccessor.readResourceID(CDOID folderID, String name, CDOBranchPoint branchPoint)
          Returns the CDOID of the resource node with the given folderID and name if a resource with this folderID and name exists in the store, null otherwise.
 

Methods in org.eclipse.emf.cdo.server that return types with arguments of type CDOID
 Map<CDOID,EClass> IStoreAccessor.CommitContext.getDetachedObjectTypes()
          Returns a map with an EClass value per CDOID type.
 Map<CDOID,CDOID> IStoreAccessor.CommitContext.getIDMappings()
          Returns an unmodifiable map from all temporary IDs to their persistent counter parts.
 Map<CDOID,CDOID> IStoreAccessor.CommitContext.getIDMappings()
          Returns an unmodifiable map from all temporary IDs to their persistent counter parts.
 Map<CDOID,EClass> IStoreAccessor.QueryXRefsContext.getTargetObjects()
           
 Set<CDOID> IStoreAccessor.readChangeSet(OMMonitor monitor, CDOChangeSetSegment... segments)
          Returns a set of CDOIDs that have at least one revision in any of the passed branches and time ranges.
 

Methods in org.eclipse.emf.cdo.server with parameters of type CDOID
 boolean IStoreAccessor.QueryResourcesContext.addResource(CDOID resourceID)
          Adds the CDOID of one resource to the results of the underlying query.
 boolean IStoreAccessor.QueryXRefsContext.addXRef(CDOID targetID, CDOID sourceID, EReference sourceReference, int sourceIndex)
          Adds the data of one cross reference to the results of the underlying query.
 void CDOServerImporter.Handler.handleRepository(String name, String uuid, CDOID root, long created, long committed)
           
 void IStoreAccessor.Raw.rawDelete(CDOID id, int version, CDOBranch branch, EClass eClass, OMMonitor monitor)
          Deletes the revision identified by the given key from the backend represented by this raw store accessor without going through a regular commit.
 CDOID IStoreAccessor.readResourceID(CDOID folderID, String name, CDOBranchPoint branchPoint)
          Returns the CDOID of the resource node with the given folderID and name if a resource with this folderID and name exists in the store, null otherwise.
 InternalCDORevision IStoreAccessor.readRevision(CDOID id, CDOBranchPoint branchPoint, int listChunk, CDORevisionCacheAdder cache)
          Reads a revision from the back-end that was valid at the given timeStamp in the given branch.
 InternalCDORevision IStoreAccessor.readRevisionByVersion(CDOID id, CDOBranchVersion branchVersion, int listChunk, CDORevisionCacheAdder cache)
          Reads a revision with the given version in the given branch from the back-end.
protected  String CDOServerExporter.XML.str(CDOID id)
           
 

Method parameters in org.eclipse.emf.cdo.server with type arguments of type CDOID
 IDurableLockingManager.LockArea IStoreAccessor.DurableLocking2.createLockArea(String durableLockingID, String userID, CDOBranchPoint branchPoint, boolean readOnly, Map<CDOID,IDurableLockingManager.LockGrade> locks)
           
protected  Object CDOServerBrowser.RevisionsPage.getRevisionValue(Object value, CDOServerBrowser browser, Map<CDOID,List<CDORevision>> ids, InternalCDORevision context)
           
protected  void CDOServerBrowser.RevisionsPage.showRevision(PrintStream pout, CDOServerBrowser browser, Map<CDOBranch,List<CDORevision>> allRevisions, Map<CDOID,List<CDORevision>> ids, String key, InternalRepository repository)
           
protected  void CDOServerBrowser.RevisionsPage.showRevision(PrintStream pout, CDOServerBrowser browser, Map<CDOID,List<CDORevision>> ids, InternalCDORevision revision)
           
 

Uses of CDOID in org.eclipse.emf.cdo.server.db
 

Methods in org.eclipse.emf.cdo.server.db that return CDOID
 CDOID IIDHandler.createCDOID(String val)
           
 CDOID IIDHandler.getCDOID(ResultSet resultSet, int column)
           
 CDOID IIDHandler.getCDOID(ResultSet resultSet, String name)
           
 CDOID IIDHandler.getLastObjectID()
           
 CDOID IIDHandler.getMaxCDOID()
           
 CDOID IMetaDataManager.getMetaID(EModelElement modelElement, long commitTime)
          Returns the meta ID of the given EModelElement.
 CDOID IIDHandler.getMinCDOID()
           
 CDOID IIDHandler.getNextCDOID(CDORevision revision)
           
 CDOID IIDHandler.getNextLocalObjectID()
           
 CDOID IIDHandler.mapURI(IDBStoreAccessor accessor, String uri, long commitTime)
           
 

Methods in org.eclipse.emf.cdo.server.db with parameters of type CDOID
 void IIDHandler.adjustLastObjectID(CDOID maxID)
           
 void IIDHandler.appendCDOID(StringBuilder builder, CDOID id)
           
 EModelElement IMetaDataManager.getMetaInstance(CDOID id)
          Returns the EModelElement referred to by the given ID.
 boolean IIDHandler.isLocalCDOID(CDOID id)
          Deprecated. Not used anymore.
 void IIDHandler.setCDOID(PreparedStatement stmt, int column, CDOID id)
           
 void IIDHandler.setCDOID(PreparedStatement stmt, int column, CDOID id, long commitTime)
           
 void IIDHandler.setLastObjectID(CDOID lastObjectID)
           
 void IIDHandler.setNextLocalObjectID(CDOID nextLocalObjectID)
           
 String IIDHandler.unmapURI(IDBStoreAccessor accessor, CDOID id)
           
 

Uses of CDOID in org.eclipse.emf.cdo.server.db.mapping
 

Methods in org.eclipse.emf.cdo.server.db.mapping that return types with arguments of type CDOID
 Set<CDOID> IClassMapping.readChangeSet(IDBStoreAccessor accessor, CDOChangeSetSegment[] segments)
          Returns a set of CDOIDs that have at least one revision in any of the passed branches and time ranges.
 Set<CDOID> IMappingStrategy.readChangeSet(IDBStoreAccessor accessor, OMMonitor monitor, CDOChangeSetSegment[] segments)
          Returns a set of CDOIDs that have at least one revision in any of the passed branches and time ranges.
 CloseableIterator<CDOID> IMappingStrategy.readObjectIDs(IDBStoreAccessor accessor)
          Get an iterator over all instances of objects in the store.
 

Methods in org.eclipse.emf.cdo.server.db.mapping with parameters of type CDOID
 void IListMapping2.addRangedChunkWhere(IDBStoreAccessor accessor, CDOID cdoid, StringBuilder builder, int fromIndex, int toIndex)
           
 void IListMapping2.addSimpleChunkWhere(IDBStoreAccessor accessor, CDOID cdoid, StringBuilder builder, int index)
           
 PreparedStatement IClassMapping.createResourceQueryStatement(IDBStoreAccessor accessor, CDOID folderId, String name, boolean exactMatch, CDOBranchPoint branchPoint)
          Create a prepared statement which returns all IDs of instances of the corresponding class.
 void IClassMapping.detachObject(IDBStoreAccessor accessor, CDOID id, int version, CDOBranch branch, long timeStamp, OMMonitor monitor)
          Detaches (deletes) a CDO object leaving a "ghost" revision behind.
 void IListMapping.objectDetached(IDBStoreAccessor accessor, CDOID id, long revised)
          Hook with which a list mapping is notified that a containing object has been revised.
 void IListMappingDeltaSupport.processDelta(IDBStoreAccessor accessor, CDOID id, int branchId, int oldVersion, int newVersion, long created, CDOListFeatureDelta delta)
          Process a set of CDOFeatureDeltas for a many-valued feature.
 CDOClassifierRef IMappingStrategy.readObjectType(IDBStoreAccessor accessor, CDOID id)
          Read the type (i.e. class) of the object referred to by a given ID.
 

Uses of CDOID in org.eclipse.emf.cdo.server.mem
 

Methods in org.eclipse.emf.cdo.server.mem with parameters of type CDOID
 EClass IMEMStore.getObjectType(CDOID id)
           
 

Uses of CDOID in org.eclipse.emf.cdo.server.ocl
 

Methods in org.eclipse.emf.cdo.server.ocl with parameters of type CDOID
protected  EObject CDOExtentCreator.getEObject(CDOID id)
           
protected  boolean CDOExtentCreator.isDetached(CDOID id)
           
 

Uses of CDOID in org.eclipse.emf.cdo.spi.common.commit
 

Methods in org.eclipse.emf.cdo.spi.common.commit that return types with arguments of type CDOID
 Map<CDOID,CDORevisionKey> CDORevisionAvailabilityInfo.getAvailableRevisions()
           
 

Methods in org.eclipse.emf.cdo.spi.common.commit with parameters of type CDOID
 boolean CDORevisionAvailabilityInfo.containsRevision(CDOID id)
           
 CDOChangeKind CDOChangeKindCache.getChangeKind(CDOID id)
           
 CDORevision CDOChangeSetDataRevisionProvider.getRevision(CDOID id)
           
 CDORevision CDORevisionAvailabilityInfo.getRevision(CDOID id)
           
 void CDORevisionAvailabilityInfo.removeRevision(CDOID id)
           
 

Uses of CDOID in org.eclipse.emf.cdo.spi.common.id
 

Subinterfaces of CDOID in org.eclipse.emf.cdo.spi.common.id
 interface InternalCDOIDObject
          If the meaning of this type isn't clear, there really should be more of a description here...
 

Classes in org.eclipse.emf.cdo.spi.common.id that implement CDOID
 class AbstractCDOID
          If the meaning of this type isn't clear, there really should be more of a description here...
 

Methods in org.eclipse.emf.cdo.spi.common.id with parameters of type CDOID
 int AbstractCDOID.compareTo(CDOID o)
           
protected abstract  int AbstractCDOID.doCompareTo(CDOID o)
           
 

Uses of CDOID in org.eclipse.emf.cdo.spi.common.model
 

Methods in org.eclipse.emf.cdo.spi.common.model with parameters of type CDOID
 InternalCDORevision InternalCDOClassInfo.getRevisionForID(CDOID id)
           
 

Uses of CDOID in org.eclipse.emf.cdo.spi.common.protocol
 

Methods in org.eclipse.emf.cdo.spi.common.protocol that return CDOID
 CDOID CDODataInputImpl.readCDOID()
           
 

Methods in org.eclipse.emf.cdo.spi.common.protocol with parameters of type CDOID
 void CDODataOutputImpl.writeCDOID(CDOID id)
           
 

Uses of CDOID in org.eclipse.emf.cdo.spi.common.revision
 

Methods in org.eclipse.emf.cdo.spi.common.revision that return CDOID
 CDOID BaseCDORevision.getID()
           
 CDOID DelegatingCDORevision.getID()
           
 CDOID RevisionInfo.getID()
           
 CDOID StubCDORevision.getID()
           
 CDOID SyntheticCDORevision.getID()
           
 CDOID BaseCDORevision.getResourceID()
           
 CDOID DelegatingCDORevision.getResourceID()
           
 CDOID StubCDORevision.getResourceID()
           
 

Methods in org.eclipse.emf.cdo.spi.common.revision that return types with arguments of type CDOID
 Map<CDOID,CDOID> CDOIDMapper.getIDMappings()
           
 Map<CDOID,CDOID> CDOIDMapper.getIDMappings()
           
 

Methods in org.eclipse.emf.cdo.spi.common.revision with parameters of type CDOID
 boolean DelegatingCDORevisionManager.containsRevision(CDOID id, CDOBranchPoint branchPoint)
           
 boolean DelegatingCDORevisionManager.containsRevisionByVersion(CDOID id, CDOBranchVersion branchVersion)
           
 EClass DelegatingCDORevisionManager.getObjectType(CDOID id)
           
 CDORevision ManagedRevisionProvider.getRevision(CDOID id)
           
 InternalCDORevision DelegatingCDORevisionManager.getRevision(CDOID id, CDOBranchPoint branchPoint, int referenceChunk, int prefetchDepth, boolean loadOnDemand)
           
 InternalCDORevision InternalCDORevisionManager.getRevision(CDOID id, CDOBranchPoint branchPoint, int referenceChunk, int prefetchDepth, boolean loadOnDemand)
           
 InternalCDORevision DelegatingCDORevisionManager.getRevision(CDOID id, CDOBranchPoint branchPoint, int referenceChunk, int prefetchDepth, boolean loadOnDemand, SyntheticCDORevision[] synthetics)
           
 InternalCDORevision InternalCDORevisionManager.getRevision(CDOID id, CDOBranchPoint branchPoint, int referenceChunk, int prefetchDepth, boolean loadOnDemand, SyntheticCDORevision[] synthetics)
           
 InternalCDORevision DelegatingCDORevisionManager.getRevisionByVersion(CDOID id, CDOBranchVersion branchVersion, int referenceChunk, boolean loadOnDemand)
           
 InternalCDORevision InternalCDORevisionManager.getRevisionByVersion(CDOID id, CDOBranchVersion branchVersion, int referenceChunk, boolean loadOnDemand)
           
 InternalCDORevision AbstractCDORevision.getRevisionForID(CDOID id)
           
 InternalCDORevision DelegatingCDORevision.getRevisionForID(CDOID id)
           
 InternalCDORevision InternalCDORevision.getRevisionForID(CDOID id)
           
 InternalCDORevision InternalCDORevisionManager.RevisionLoader.loadRevisionByVersion(CDOID id, CDOBranchVersion branchVersion, int referenceChunk)
           
static InternalCDORevision RevisionInfo.readResult(CDODataInput in, CDOID id, CDOBranch branch)
           
 CDORevision InternalCDORevisionCache.removeRevision(CDOID id, CDOBranchVersion branchVersion)
           
 void DelegatingCDORevisionManager.reviseLatest(CDOID id, CDOBranch branch)
           
 void InternalCDORevisionManager.reviseLatest(CDOID id, CDOBranch branch)
          Called on client via postCommit when there is no version of detached objects available.
 void DelegatingCDORevisionManager.reviseVersion(CDOID id, CDOBranchVersion branchVersion, long timeStamp)
           
 void InternalCDORevisionManager.reviseVersion(CDOID id, CDOBranchVersion branchVersion, long timeStamp)
           
 void BaseCDORevision.setID(CDOID id)
           
 void DelegatingCDORevision.setID(CDOID id)
           
 void InternalCDORevision.setID(CDOID id)
           
 void StubCDORevision.setID(CDOID id)
           
 void BaseCDORevision.setResourceID(CDOID resourceID)
           
 void DelegatingCDORevision.setResourceID(CDOID resourceID)
           
 void InternalCDORevision.setResourceID(CDOID resourceID)
           
 void StubCDORevision.setResourceID(CDOID resourceID)
           
 

Method parameters in org.eclipse.emf.cdo.spi.common.revision with type arguments of type CDOID
 List<CDORevision> DelegatingCDORevisionManager.getRevisions(List<CDOID> ids, CDOBranchPoint branchPoint, int referenceChunk, int prefetchDepth, boolean loadOnDemand)
           
 List<CDORevision> DelegatingCDORevisionManager.getRevisions(List<CDOID> ids, CDOBranchPoint branchPoint, int referenceChunk, int prefetchDepth, boolean loadOnDemand, SyntheticCDORevision[] synthetics)
           
 List<CDORevision> InternalCDORevisionManager.getRevisions(List<CDOID> ids, CDOBranchPoint branchPoint, int referenceChunk, int prefetchDepth, boolean loadOnDemand, SyntheticCDORevision[] synthetics)
           
static Object BaseCDORevision.remapID(Object value, Map<CDOID,CDOID> idMappings, boolean allowUnmappedTempIDs)
           
static Object BaseCDORevision.remapID(Object value, Map<CDOID,CDOID> idMappings, boolean allowUnmappedTempIDs)
           
 

Constructors in org.eclipse.emf.cdo.spi.common.revision with parameters of type CDOID
DetachedCDORevision(EClass eClass, CDOID id, CDOBranch branch, int version, long timeStamp)
           
DetachedCDORevision(EClass eClass, CDOID id, CDOBranch branch, int version, long timeStamp, long revised)
           
PointerCDORevision(EClass eClass, CDOID id, CDOBranch branch, long revised, CDOBranchVersion target)
           
RevisionInfo.Available.Detached(CDOID id, CDOBranchPoint requestedBranchPoint, CDOBranchVersion availableBranchVersion)
           
RevisionInfo.Available.Normal(CDOID id, CDOBranchPoint requestedBranchPoint, CDOBranchVersion availableBranchVersion)
           
RevisionInfo.Available.Pointer(CDOID id, CDOBranchPoint requestedBranchPoint, CDOBranchVersion availableBranchVersion, CDOBranchVersion targetBranchVersion)
           
RevisionInfo.Available(CDOID id, CDOBranchPoint requestedBranchPoint, CDOBranchVersion availableBranchVersion)
           
RevisionInfo.Missing(CDOID id, CDOBranchPoint requestedBranchPoint)
           
RevisionInfo(CDOID id, CDOBranchPoint requestedBranchPoint)
           
SyntheticCDORevision(EClass eClass, CDOID id, CDOBranch branch)
           
 

Constructor parameters in org.eclipse.emf.cdo.spi.common.revision with type arguments of type CDOID
CDOIDMapper(Map<CDOID,CDOID> idMappings)
           
CDOIDMapper(Map<CDOID,CDOID> idMappings)
           
 

Uses of CDOID in org.eclipse.emf.cdo.spi.server
 

Methods in org.eclipse.emf.cdo.spi.server that return CDOID
 CDOID LongIDStore.createObjectID(String val)
           
 CDOID DelegatingQueryResourcesContext.getFolderID()
           
 CDOID InternalLockManager.getLockKeyID(Object key)
           
protected  CDOID LongIDStoreAccessor.getNextCDOID(CDORevision revision)
           
protected abstract  CDOID StoreAccessorBase.getNextCDOID(CDORevision revision)
           
 CDOID LongIDStore.getNextCDOID(LongIDStoreAccessor accessor, CDORevision revision)
           
 CDOID StoreAccessorBase.readResourceID(CDOID folderID, String name, CDOBranchPoint branchPoint)
           
static CDOID Store.stringToID(String string)
           
 

Methods in org.eclipse.emf.cdo.spi.server that return types with arguments of type CDOID
 Map<CDOID,IDurableLockingManager.LockGrade> DurableLockArea.getLocks()
          Deprecated.  
 Map<CDOID,IDurableLockingManager.LockGrade> InternalLockManager.getLocks(IView view)
           
 Set<CDOID> InternalRepository.getMergeData(CDORevisionAvailabilityInfo targetInfo, CDORevisionAvailabilityInfo sourceInfo, CDORevisionAvailabilityInfo targetBaseInfo, CDORevisionAvailabilityInfo sourceBaseInfo, OMMonitor monitor)
           
 

Methods in org.eclipse.emf.cdo.spi.server with parameters of type CDOID
 void InternalCommitContext.addIDMapping(CDOID oldID, CDOID newID)
           
 boolean DelegatingQueryResourcesContext.addResource(CDOID resourceID)
           
static IStoreAccessor.QueryResourcesContext.ExactMatch Store.createExactMatchContext(CDOID folderID, String name, CDOBranchPoint branchPoint)
           
 InternalCDORevision Store.createRevision(EClass eClass, CDOID id)
           
protected abstract  void StoreAccessor.detachObjects(CDOID[] detachedObjects, CDOBranch branch, long timeStamp, OMMonitor monitor)
           
 void LongIDStore.ensureLastObjectID(CDOID id)
           
 Object InternalLockManager.getLockKey(CDOID id, CDOBranch branch)
           
 boolean InternalView.hasSubscription(CDOID id)
           
static String Store.idToString(CDOID id)
           
 boolean InternalStore.isLocal(CDOID id)
          Deprecated. Not used anymore.
 boolean LongIDStore.isLocal(CDOID id)
          Deprecated. 
 CDOID StoreAccessorBase.readResourceID(CDOID folderID, String name, CDOBranchPoint branchPoint)
           
 void ISessionProtocol.sendRepositoryStateNotification(CDOCommonRepository.State oldState, CDOCommonRepository.State newState, CDOID rootResourceID)
           
 void InternalSession.sendRepositoryStateNotification(CDOCommonRepository.State oldState, CDOCommonRepository.State newState, CDOID rootResourceID)
           
 void InternalSessionManager.sendRepositoryStateNotification(CDOCommonRepository.State oldState, CDOCommonRepository.State newState, CDOID rootResourceID)
           
 void InternalCommitContext.setDetachedObjects(CDOID[] detachedObjects)
           
 void InternalRepository.setRootResourceID(CDOID rootResourceID)
           
 void InternalView.subscribe(CDOID id)
           
 void InternalView.unsubscribe(CDOID id)
           
 

Method parameters in org.eclipse.emf.cdo.spi.server with type arguments of type CDOID
 void InternalView.changeTarget(CDOBranchPoint branchPoint, List<CDOID> invalidObjects, List<CDORevisionDelta> allChangedObjects, List<CDOID> allDetachedObjects)
           
 void InternalView.changeTarget(CDOBranchPoint branchPoint, List<CDOID> invalidObjects, List<CDORevisionDelta> allChangedObjects, List<CDOID> allDetachedObjects)
           
 void InternalSession.collectContainedRevisions(InternalCDORevision revision, CDOBranchPoint branchPoint, int referenceChunk, Set<CDOID> revisions, List<CDORevision> additionalRevisions)
           
 void InternalCommitContext.setDetachedObjectTypes(Map<CDOID,EClass> detachedObjectTypes)
           
 CDOSessionProtocol.UnlockObjectsResult InternalRepository.unlock(InternalView view, IRWLockManager.LockType type, List<CDOID> ids, boolean recursive)
           
 

Constructor parameters in org.eclipse.emf.cdo.spi.server with type arguments of type CDOID
DurableLockArea(String durableLockingID, String userID, CDOBranchPoint branchPoint, boolean readOnly, Map<CDOID,IDurableLockingManager.LockGrade> locks)
          Deprecated.  
 

Uses of CDOID in org.eclipse.emf.cdo.spi.workspace
 

Methods in org.eclipse.emf.cdo.spi.workspace with parameters of type CDOID
 void InternalCDOWorkspaceBase.deregisterObject(CDOID id)
           
 void InternalCDOWorkspaceBase.registerAddedObject(CDOID id)
           
 

Uses of CDOID in org.eclipse.emf.cdo.transaction
 

Methods in org.eclipse.emf.cdo.transaction that return types with arguments of type CDOID
 Map<CDOID,CDORevision> CDOSavepoint.getAllBaseNewObjects()
           
 Map<CDOID,CDOObject> CDOSavepoint.getAllDetachedObjects()
           
 Map<CDOID,CDOObject> CDOSavepoint.getAllDirtyObjects()
          Return the list of new objects from this point.
 Map<CDOID,CDOObject> CDOSavepoint.getAllNewObjects()
          Return the list of new objects from this point without objects that are removed.
 Map<CDOID,CDORevisionDelta> CDOSavepoint.getAllRevisionDeltas()
          Return the list of all deltas without objects that are removed.
 Map<CDOID,CDORevision> CDOSavepoint.getBaseNewObjects()
           
 Map<CDOID,CDOObject> CDOCommitContext.getDetachedObjects()
          Returns a map of the detached objects that are to be committed with this commit context.
 Map<CDOID,CDOObject> CDOPushTransaction.getDetachedObjects()
           
 Map<CDOID,CDOObject> CDOSavepoint.getDetachedObjects()
           
 Map<CDOID,CDOObject> CDOTransaction.getDetachedObjects()
           
 Map<CDOID,CDOObject> CDOCommitContext.getDirtyObjects()
          Returns a map of the dirty objects that are to be committed with this commit context.
 Map<CDOID,CDOObject> CDOPushTransaction.getDirtyObjects()
           
 Map<CDOID,CDOObject> CDOSavepoint.getDirtyObjects()
           
 Map<CDOID,CDOObject> CDOTransaction.getDirtyObjects()
           
 Map<CDOID,CDOID> CDOTransactionFinishedEvent.getIDMappings()
           
 Map<CDOID,CDOID> CDOTransactionFinishedEvent.getIDMappings()
           
 Map<CDOID,CDOObject> CDOCommitContext.getNewObjects()
          Returns a map of the new objects that are to be committed with this commit context.
 Map<CDOID,CDOObject> CDOPushTransaction.getNewObjects()
           
 Map<CDOID,CDOObject> CDOSavepoint.getNewObjects()
           
 Map<CDOID,CDOObject> CDOTransaction.getNewObjects()
           
 Map<CDOID,CDOObject> CDOSavepoint.getReattachedObjects()
          Bug 283985 (Re-attachment)
 Map<CDOID,CDORevisionDelta> CDOCommitContext.getRevisionDeltas()
          Returns a map of the revision deltas that are to be committed with this commit context.
 Map<CDOID,CDORevisionDelta> CDOPushTransaction.getRevisionDeltas()
           
 ConcurrentMap<CDOID,CDORevisionDelta> CDOSavepoint.getRevisionDeltas()
          Deprecated. As of 4.2 use CDOSavepoint.getRevisionDeltas2() instead.
 Map<CDOID,CDORevisionDelta> CDOTransaction.getRevisionDeltas()
           
 Map<CDOID,CDORevisionDelta> CDOSavepoint.getRevisionDeltas2()
           
 

Methods in org.eclipse.emf.cdo.transaction with parameters of type CDOID
 CDOObject CDOPushTransaction.getObject(CDOID id)
           
 CDOObject CDOPushTransaction.getObject(CDOID id, boolean loadOnDemand)
           
 CDORevision CDOPushTransaction.getRevision(CDOID id)
           
 boolean CDOPushTransaction.isObjectRegistered(CDOID id)
           
 

Method parameters in org.eclipse.emf.cdo.transaction with type arguments of type CDOID
 void CDOPushTransaction.setResourcePathCache(Map<String,CDOID> resourcePathCache)
           
 

Uses of CDOID in org.eclipse.emf.cdo.util
 

Methods in org.eclipse.emf.cdo.util that return CDOID
static CDOID CDOURIUtil.convertExternalCDOID(URI baseURI, CDOID newCDOID)
          Converting temporary CDOID to External CDOID
e.g.:
baseURI = cdo://2a57dfcf-8f97-4d39-8e17-9d99ae5c4b3c/resB#5/2
newCDOID = OID2
return = cdo://2a57dfcf-8f97-4d39-8e17-9d99ae5c4b3c/resB#1/2
 CDOID ObjectNotFoundException.getID()
           
 

Methods in org.eclipse.emf.cdo.util with parameters of type CDOID
static CDOID CDOURIUtil.convertExternalCDOID(URI baseURI, CDOID newCDOID)
          Converting temporary CDOID to External CDOID
e.g.:
baseURI = cdo://2a57dfcf-8f97-4d39-8e17-9d99ae5c4b3c/resB#5/2
newCDOID = OID2
return = cdo://2a57dfcf-8f97-4d39-8e17-9d99ae5c4b3c/resB#1/2
 

Constructors in org.eclipse.emf.cdo.util with parameters of type CDOID
InvalidObjectException(CDOID id, CDOBranchPoint branchPoint)
           
ObjectNotFoundException(CDOID id)
           
ObjectNotFoundException(CDOID id, CDOBranchPoint branchPoint)
           
 

Uses of CDOID in org.eclipse.emf.cdo.view
 

Methods in org.eclipse.emf.cdo.view that return CDOID
 CDOID CDOFetchRuleManager.getContext()
           
 

Methods in org.eclipse.emf.cdo.view that return types with arguments of type CDOID
 List<CDOID> CDORevisionPrefetchingPolicy.loadAhead(CDORevisionManager revisionManager, CDOBranchPoint branchPoint, EObject targetObject, EStructuralFeature feature, CDOList list, int accessIndex, CDOID accessID)
           
 

Methods in org.eclipse.emf.cdo.view with parameters of type CDOID
 CDOObject CDOView.getObject(CDOID id)
          Returns the object for the given CDOID.
 CDOObject CDOView.getObject(CDOID id, boolean loadOnDemand)
          Returns the object for the given CDOID.
 boolean CDOView.isObjectRegistered(CDOID id)
          Returns true if an object with the given id is currently registered in this view, false otherwise.
 List<CDOID> CDORevisionPrefetchingPolicy.loadAhead(CDORevisionManager revisionManager, CDOBranchPoint branchPoint, EObject targetObject, EStructuralFeature feature, CDOList list, int accessIndex, CDOID accessID)
           
 Object CDOStaleReferencePolicy.processStaleReference(EObject source, EStructuralFeature feature, int index, CDOID target)
          Returns an object that we want to return to the caller (clients).
 

Method parameters in org.eclipse.emf.cdo.view with type arguments of type CDOID
 List<CDOFetchRule> CDOFetchRuleManager.getFetchRules(Collection<CDOID> ids)
           
 void CDOView.setResourcePathCache(Map<String,CDOID> resourcePathCache)
          Sets the new map to be used as a cache for various get*Resource*(String path) methods.
 

Uses of CDOID in org.eclipse.emf.cdo.workspace
 

Methods in org.eclipse.emf.cdo.workspace that return types with arguments of type CDOID
 Set<CDOID> CDOWorkspaceBase.getIDs()
           
 

Methods in org.eclipse.emf.cdo.workspace with parameters of type CDOID
 boolean CDOWorkspaceBase2.containsID(CDOID id)
           
 boolean CDOWorkspaceBase2.isAddedObject(CDOID id)
           
 

Uses of CDOID in org.eclipse.emf.internal.cdo
 

Methods in org.eclipse.emf.internal.cdo that return CDOID
 CDOID CDOObjectImpl.cdoID()
           
 

Methods in org.eclipse.emf.internal.cdo with parameters of type CDOID
 void CDOObjectImpl.cdoInternalSetID(CDOID id)
           
 

Uses of CDOID in org.eclipse.emf.spi.cdo
 

Methods in org.eclipse.emf.spi.cdo that return CDOID
 CDOID InternalCDOTransaction.createIDForNewObject(EObject object)
           
abstract  CDOID DefaultCDOMerger.Conflict.getID()
           
 CDOID DefaultCDOMerger.ChangedInSourceAndTargetConflict.getID()
           
 CDOID DefaultCDOMerger.ChangedInSourceAndDetachedInTargetConflict.getID()
           
 CDOID DefaultCDOMerger.ChangedInTargetAndDetachedInSourceConflict.getID()
           
 CDOID InternalCDOView.getResourceNodeID(String path)
           
 CDOID CDOSessionProtocol.OpenSessionResult.getRootResourceID()
           
 

Methods in org.eclipse.emf.spi.cdo that return types with arguments of type CDOID
 Pair<CDOChangeSetData,Pair<Map<CDOID,CDOID>,List<CDOID>>> InternalCDOTransaction.applyChangeSetData(CDOChangeSetData changeSetData, CDORevisionProvider ancestorProvider, CDORevisionProvider targetProvider, CDOBranchPoint source)
          Deprecated. Use InternalCDOTransaction.applyChangeSet(CDOChangeSetData, CDORevisionProvider, CDORevisionProvider, CDOBranchPoint, boolean)
 Pair<CDOChangeSetData,Pair<Map<CDOID,CDOID>,List<CDOID>>> InternalCDOTransaction.applyChangeSetData(CDOChangeSetData changeSetData, CDORevisionProvider ancestorProvider, CDORevisionProvider targetProvider, CDOBranchPoint source)
          Deprecated. Use InternalCDOTransaction.applyChangeSet(CDOChangeSetData, CDORevisionProvider, CDORevisionProvider, CDOBranchPoint, boolean)
 Pair<CDOChangeSetData,Pair<Map<CDOID,CDOID>,List<CDOID>>> InternalCDOTransaction.applyChangeSetData(CDOChangeSetData changeSetData, CDORevisionProvider ancestorProvider, CDORevisionProvider targetProvider, CDOBranchPoint source)
          Deprecated. Use InternalCDOTransaction.applyChangeSet(CDOChangeSetData, CDORevisionProvider, CDORevisionProvider, CDOBranchPoint, boolean)
 List<CDOID> InternalCDOTransaction.ApplyChangeSetResult.getAdjustedObjects()
           
 Map<CDOID,DefaultCDOMerger.Conflict> DefaultCDOMerger.getConflicts()
           
 Map<CDOID,CDOID> CDOSessionProtocol.CommitTransactionResult.getIDMappings()
           
 Map<CDOID,CDOID> CDOSessionProtocol.CommitTransactionResult.getIDMappings()
           
 Map<CDOID,CDOID> InternalCDOTransaction.ApplyChangeSetResult.getIDMappings()
           
 Map<CDOID,CDOID> InternalCDOTransaction.ApplyChangeSetResult.getIDMappings()
           
 Set<CDOID> InternalCDOSession.MergeData.getIDs()
           
 Map<CDOID,InternalCDOObject> InternalCDOView.getObjects()
          Returns an unmodifiable map of the objects managed by this view.
 Set<CDOID> InternalCDOSavepoint.getSharedDetachedObjects()
          Deprecated. 
protected  Map<CDOID,Object> DefaultCDOMerger.getSourceMap()
           
protected  Map<CDOID,Object> DefaultCDOMerger.getTargetMap()
           
 Set<CDOID> CDOSessionProtocol.loadMergeData(CDORevisionAvailabilityInfo targetInfo, CDORevisionAvailabilityInfo sourceInfo, CDORevisionAvailabilityInfo targetBaseInfo, CDORevisionAvailabilityInfo sourceBaseInfo)
           
 

Methods in org.eclipse.emf.spi.cdo with parameters of type CDOID
 void InternalCDOXATransaction.add(InternalCDOTransaction transaction, CDOID object)
           
 void CDOSessionProtocol.CommitTransactionResult.addIDMapping(CDOID oldID, CDOID newID)
           
 void InternalCDOObject.cdoInternalSetID(CDOID id)
           
protected  Object DefaultCDOMerger.detachedInSource(CDOID id)
           
protected  Object DefaultCDOMerger.detachedInSourceAndTarget(CDOID id)
           
protected  Object DefaultCDOMerger.detachedInTarget(CDOID id)
           
 CDOBranchPoint InternalCDOSession.getCommittedSinceLastRefresh(CDOID id)
           
 InternalCDORevision InternalCDOView.getRevision(CDOID id, boolean loadOnDemand)
           
 boolean InternalCDOView.hasSubscription(CDOID id)
           
 boolean InternalCDOSavepoint.isNewObject(CDOID id)
           
 boolean InternalCDOView.isObjectNew(CDOID id)
           
 void InternalCDOView.prefetchRevisions(CDOID id, int depth)
           
 void InternalCDOView.remapObject(CDOID oldID)
           
 void InternalCDOSession.setCommittedSinceLastRefresh(CDOID id, CDOBranchPoint branchPoint)
           
 

Method parameters in org.eclipse.emf.spi.cdo with type arguments of type CDOID
 void CDOSessionProtocol.changeSubscription(int viewId, List<CDOID> ids, boolean subscribeMode, boolean clear)
           
 void InternalCDOView.collectViewedRevisions(Map<CDOID,InternalCDORevision> revisions)
           
 CDOSessionProtocol.CommitTransactionResult CDOSessionProtocol.commitDelegation(CDOBranch branch, String userID, String comment, CDOCommitData commitData, Map<CDOID,EClass> detachedObjectTypes, Collection<CDOLob<?>> lobs, OMMonitor monitor)
          Deprecated. Not called anymore. Use #commitDelegation(InternalCDOCommitContext, OMMonitor) instead.
 CDOSessionProtocol.UnlockObjectsResult CDOSessionProtocol.delegateUnlockObjects(String lockAreaID, Collection<CDOID> objectIDs, IRWLockManager.LockType lockType, boolean recursive)
           
 CDOLockState[] InternalCDOView.getLockStates(Collection<CDOID> ids)
           
 CDOLockState[] CDOSessionProtocol.getLockStates(int viewID, Collection<CDOID> ids)
           
 void InternalCDOView.invalidate(CDOBranch branch, long lastUpdateTime, List<CDORevisionKey> allChangedObjects, List<CDOIDAndVersion> allDetachedObjects, Map<CDOID,InternalCDORevision> oldRevisions, boolean async)
          Deprecated. As of 4.2. use InternalCDOView.invalidate(CDOBranch, long, List, List, Map, boolean, boolean)
 void InternalCDOView.invalidate(CDOBranch branch, long lastUpdateTime, List<CDORevisionKey> allChangedObjects, List<CDOIDAndVersion> allDetachedObjects, Map<CDOID,InternalCDORevision> oldRevisions, boolean async, boolean clearResourcePathCache)
           
 void InternalCDOSession.processRefreshSessionResult(CDOSessionProtocol.RefreshSessionResult result, CDOBranch branch, List<InternalCDOView> branchViews, Map<CDOBranch,Map<CDOID,InternalCDORevision>> viewedRevisions)
           
 CDOSessionProtocol.RefreshSessionResult CDOSessionProtocol.refresh(long lastUpdateTime, Map<CDOBranch,Map<CDOID,InternalCDORevision>> viewedRevisions, int initialChunkSize, boolean enablePassiveUpdates)
           
 void CDOSessionProtocol.unlockObjects(CDOView view, Collection<CDOID> objectIDs, IRWLockManager.LockType lockType)
          Deprecated. Not called anymore. Use #unlockObjects2(CDOView, Collection, LockType, boolean) instead.
 CDOSessionProtocol.UnlockObjectsResult CDOSessionProtocol.unlockObjects2(CDOView view, Collection<CDOID> objectIDs, IRWLockManager.LockType lockType, boolean recursive)
           
 

Constructors in org.eclipse.emf.spi.cdo with parameters of type CDOID
CDOSessionProtocol.OpenSessionResult(int sessionID, String userID, String repositoryUUID, CDOCommonRepository.Type repositoryType, CDOCommonRepository.State repositoryState, String storeType, Set<CDOID.ObjectType> objectIDTypes, long repositoryCreationTime, long lastUpdateTime, CDOID rootResourceID, boolean repositorySupportingAudits, boolean repositorySupportingBranches, boolean repositorySerializingCommits, boolean repositoryEnsuringReferentialIntegrity, CDOCommonRepository.IDGenerationLocation repositoryIDGenerationLocation)
           
 

Constructor parameters in org.eclipse.emf.spi.cdo with type arguments of type CDOID
InternalCDOSession.MergeData(CDOBranchPoint target, CDOBranchPoint source, CDOBranchPoint sourceBase, CDOBranchPoint ancestor, CDORevisionAvailabilityInfo targetInfo, CDORevisionAvailabilityInfo sourceInfo, CDORevisionAvailabilityInfo baseInfo, CDORevisionAvailabilityInfo ancestorInfo, Set<CDOID> ids, CDOChangeSet targetChanges, CDOChangeSet sourceChanges)
           
 



Copyright (c) 2011, 2012 Eike Stepper (Berlin, Germany) and others.