Uses of Interface
org.eclipse.emf.transaction.ResourceSetListener

Packages that use ResourceSetListener
org.eclipse.emf.transaction Definition of the API for a transactional editing domain. 
org.eclipse.emf.transaction.impl Implementation of the transactional editing domain API. 
org.eclipse.emf.workspace.examples.extlibrary.presentation   
 

Uses of ResourceSetListener in org.eclipse.emf.transaction
 

Subinterfaces of ResourceSetListener in org.eclipse.emf.transaction
static interface ResourceSetListener.Internal
          An interface for communication of internal life-cycle events to the listener.
 

Classes in org.eclipse.emf.transaction that implement ResourceSetListener
 class DemultiplexingListener
          A convenient superclass for post-commit listeners to process Notifications one at a time.
 class ResourceSetListenerImpl
          Default implementation of a resource-set listener, useful for extending to implement only the callbacks of interest to the client.
 class TriggerListener
          A convenient superclass for listeners that implement "triggers" to process Notifications one at a time, generating a command for each that will make dependent updates to the model.
 

Methods in org.eclipse.emf.transaction with parameters of type ResourceSetListener
 void TransactionalEditingDomain.addResourceSetListener(ResourceSetListener l)
          Adds a resource set listener to me, to receive notifications of changes to the resource set when transactions commit.
 void TransactionalEditingDomain.removeResourceSetListener(ResourceSetListener l)
          Removes a resource set listener from me.
 

Uses of ResourceSetListener in org.eclipse.emf.transaction.impl
 

Methods in org.eclipse.emf.transaction.impl that return ResourceSetListener
protected  ResourceSetListener[] TransactionalEditingDomainImpl.getAggregatePrecommitListeners()
          Obtains a copy of my aggregate pre-commit listener list as an array, for safe iteration that allows concurrent updates to the original list.
protected  ResourceSetListener[] TransactionalEditingDomainImpl.getPostcommitListeners()
          Obtains a copy of my post-commit listener list as an array, for safe iteration that allows concurrent updates to the original list.
protected  ResourceSetListener[] TransactionalEditingDomainImpl.getPrecommitListeners()
          Obtains a copy of my pre-commit listener list as an array, for safe iteration that allows concurrent updates to the original list.
 

Methods in org.eclipse.emf.transaction.impl with parameters of type ResourceSetListener
 void TransactionalEditingDomainImpl.addResourceSetListener(ResourceSetListener l)
           
 void TransactionalEditingDomainImpl.removeResourceSetListener(ResourceSetListener l)
           
 

Uses of ResourceSetListener in org.eclipse.emf.workspace.examples.extlibrary.presentation
 

Classes in org.eclipse.emf.workspace.examples.extlibrary.presentation that implement ResourceSetListener
 class ResourceLoadedListener
          Listens for the loading of resources, and creates editors on them when they load.
 


Copyright 2002, 2007 IBM Corporation and others.
All Rights Reserved.