Uses of Interface
org.eclipse.emf.cdo.view.CDOView

Packages that use CDOView
org.eclipse.emf.cdo Client concepts like CDOObject and CDOState
org.eclipse.emf.cdo.net4j Client concepts for dealing with Net4j-based sessions to remote repositories. 
org.eclipse.emf.cdo.server Server concepts for dealing with repositories and stores. 
org.eclipse.emf.cdo.server.ocl Server implementation of a generic OCL query handler. 
org.eclipse.emf.cdo.session Client concepts for dealing with sessions to remote repositories. 
org.eclipse.emf.cdo.spi.server Server service provider interfaces and useful base implementations. 
org.eclipse.emf.cdo.transaction Client concepts for dealing with transactions, distributed transactions and their save points. 
org.eclipse.emf.cdo.ui Reusable UI components specific to the CDO Model Repository. 
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.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 CDOView in org.eclipse.emf.cdo
 

Methods in org.eclipse.emf.cdo that return CDOView
 CDOView CDOObject.cdoView()
          Returns the view this object is associated with, or null if this object is not associated with a view.
 

Uses of CDOView in org.eclipse.emf.cdo.net4j
 

Methods in org.eclipse.emf.cdo.net4j that return CDOView
 CDOView CDONet4jViewProvider.getView(URI uri, ResourceSet resourceSet)
           
 

Methods in org.eclipse.emf.cdo.net4j with parameters of type CDOView
 URI CDONet4jViewProvider.getResourceURI(CDOView view, String path)
           
 

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

Methods in org.eclipse.emf.cdo.server that return CDOView
static CDOView CDOServerUtil.openView(ISession session, CDOBranchPoint branchPoint, boolean legacyModeEnabled)
           
static CDOView CDOServerUtil.openView(ISession session, CDOBranchPoint branchPoint, boolean legacyModeEnabled, CDORevisionProvider revisionProvider)
           
static CDOView CDOServerUtil.openView(IStoreAccessor.CommitContext commitContext, boolean legacyModeEnabled)
           
static CDOView CDOServerUtil.openView(IView view, boolean legacyModeEnabled)
           
 

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

Methods in org.eclipse.emf.cdo.server.ocl that return CDOView
 CDOView CDOExtentCreator.getView()
           
 

Methods in org.eclipse.emf.cdo.server.ocl with parameters of type CDOView
protected  CDOExtentMap OCLQueryHandler.createExtentMap(CDOView view, CDOChangeSetData changeSetData, IQueryContext context)
           
protected  CDORevision OCLQueryHandler.getRevision(EObject object, CDOView view)
           
 

Constructors in org.eclipse.emf.cdo.server.ocl with parameters of type CDOView
CDOExtentCreator.Lazy(CDOView view)
           
CDOExtentCreator(CDOView view)
           
 

Uses of CDOView in org.eclipse.emf.cdo.session
 

Methods in org.eclipse.emf.cdo.session that return CDOView
 CDOView CDOSessionInvalidationEvent.getView()
          Deprecated. Use CDOSessionInvalidationEvent.getLocalTransaction().
 CDOView CDOSession.getView(int viewID)
           
 CDOView[] CDOSession.getViews()
          Returns an array of all open views and transactions of this session.
 CDOView CDOSession.openView()
          Opens and returns a new view on a new EMF resource set.
 CDOView CDOSession.openView(CDOBranch branch)
          Opens and returns a new view on a new EMF resource set.
 CDOView CDOSession.openView(CDOBranch branch, long timeStamp)
          Opens and returns a new view on a new EMF resource set.
 CDOView CDOSession.openView(CDOBranch branch, long timeStamp, ResourceSet resourceSet)
          Opens and returns a new view on the given EMF resource set.
 CDOView CDOSession.openView(CDOBranchPoint target)
          Opens and returns a new view on a new EMF resource set.
 CDOView CDOSession.openView(CDOBranchPoint target, ResourceSet resourceSet)
          Opens and returns a new view on the given EMF resource set.
 CDOView CDOSession.openView(long timeStamp)
          Opens and returns a new view on a new EMF resource set.
 CDOView CDOSession.openView(ResourceSet resourceSet)
          Opens and returns a new view on the given EMF resource set.
 CDOView CDOSession.openView(String durableLockingID)
          Opens and returns a view on a new EMF resource set by resuming a view that has previously been made durable by calling CDOView.enableDurableLocking(true).
 CDOView CDOSession.openView(String durableLockingID, ResourceSet resourceSet)
          Opens and returns a view on the given EMF resource set by resuming a view that has previously been made durable by calling CDOView.enableDurableLocking(true).
 

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

Methods in org.eclipse.emf.cdo.spi.server that return CDOView
protected  CDOView ObjectWriteAccessHandler.getView()
           
 

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

Subinterfaces of CDOView in org.eclipse.emf.cdo.transaction
 interface CDOTransaction
          A read-write view to the current (i.e. latest) state of the object graph in the repository.
 

Classes in org.eclipse.emf.cdo.transaction that implement CDOView
 class CDOPushTransaction
          A transaction that persists changes to the object graph locally on commit and can later load these changes and push them to the repository.
 

Uses of CDOView in org.eclipse.emf.cdo.ui
 

Methods in org.eclipse.emf.cdo.ui that return CDOView
 CDOView CDOEditorInput.getView()
           
 CDOView CDOEventHandler.getView()
           
 CDOView CDOLabelProvider.getView()
           
 

Methods in org.eclipse.emf.cdo.ui with parameters of type CDOView
static CDOEditorInput CDOEditorUtil.createCDOEditorInput(CDOView view, String resourcePath, boolean viewOwned)
          Returns an implementation of CDOEditorInput interface
protected  void CDOItemProvider.fillView(IMenuManager manager, CDOView view)
           
static IEditorReference[] CDOEditorUtil.findEditor(IWorkbenchPage page, CDOView view, String resourcePath)
          Returns references to possibly opened instances of CDOEditor with certain CDOView and resource
static Image CDOItemProvider.getViewImage(CDOView view)
           
static ImageDescriptor CDOItemProvider.getViewImageDescriptor(CDOView view)
           
static void CDOEditorUtil.openEditor(IWorkbenchPage page, CDOView view, String resourcePath)
          Opens the specified resource in CDOEditor
static void CDOEditorUtil.refreshEditors(IWorkbenchPage page, CDOView view)
          Refreshes all editor's viewers that are using certain CDOView.
 

Constructors in org.eclipse.emf.cdo.ui with parameters of type CDOView
CDOEventHandler(CDOView view, TreeViewer treeViewer)
           
CDOLabelProvider(AdapterFactory adapterFactory, CDOView view, TreeViewer viewer)
           
 

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

Methods in org.eclipse.emf.cdo.util with parameters of type CDOView
static URI CDOURIUtil.createResourceURI(CDOView view, String path)
           
static void CDOUtil.load(EObject eObject, CDOView view)
           
 

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

Methods in org.eclipse.emf.cdo.view that return CDOView
 CDOView CDOView.Options.getContainer()
          Returns the view of this options object.
 CDOView CDOViewEvent.getSource()
           
 CDOView CDOQuery.getView()
          Returns the view this query was created by and is associated with.
 CDOView CDOViewProvider.getView(URI uri, ResourceSet resourceSet)
          Receives a URI and returns an opened CDOView against the repository.
 CDOView[] CDOViewSet.getViews()
           
 CDOView CDOViewProviderRegistry.provideView(URI uri, ResourceSet viewSet)
          Returns a view that serves the given URI in the given view set, or null if no view provider in this registry can provide such a view.
 CDOView CDOViewSet.resolveView(String repositoryUUID)
           
 

Methods in org.eclipse.emf.cdo.view that return types with arguments of type CDOView
 Pair<CDOView,CDOViewProvider> CDOViewProviderRegistry.provideViewWithInfo(URI uri, ResourceSet resourceSet)
          Returns a view that serves the given URI in the given view set, or null if no view provider in this registry can provide such a view.
 

Methods in org.eclipse.emf.cdo.view with parameters of type CDOView
 URI AbstractCDOViewProvider.getResourceURI(CDOView view, String path)
          Must be overwritten for non-canonical URI formats!
 URI CDOViewProvider.getResourceURI(CDOView view, String path)
           
 void CDOObjectHandler.objectStateChanged(CDOView view, CDOObject object, CDOState oldState, CDOState newState)
           
 

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

Methods in org.eclipse.emf.internal.cdo with parameters of type CDOView
 void CDOObjectImpl.cdoInternalSetView(CDOView view)
           
 

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

Subinterfaces of CDOView in org.eclipse.emf.spi.cdo
 interface InternalCDOTransaction
           
 interface InternalCDOView
           
 

Methods in org.eclipse.emf.spi.cdo that return CDOView
 CDOView AbstractQueryIterator.getView()
           
 CDOView CDOChangeSubscriptionAdapter.getView()
           
 

Methods in org.eclipse.emf.spi.cdo with parameters of type CDOView
static InternalCDOObject FSMUtil.adapt(Object object, CDOView view)
           
 void InternalCDOObject.cdoInternalSetView(CDOView view)
           
 String CDOSessionProtocol.changeLockArea(CDOView view, boolean create)
           
 boolean CDOSessionProtocol.isObjectLocked(CDOView view, CDOObject object, IRWLockManager.LockType lockType, boolean byOthers)
           
 void CDOSessionProtocol.query(CDOView view, AbstractQueryIterator<?> queryResult)
           
 void CDOSessionProtocol.unlockObjects(CDOView view, Collection<? extends CDOObject> objects, IRWLockManager.LockType lockType)
           
 

Constructors in org.eclipse.emf.spi.cdo with parameters of type CDOView
AbstractQueryIterator(CDOView view, CDOQueryInfo queryInfo)
           
CDOChangeSubscriptionAdapter(CDOView view)
           
 



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