Uses of Class
org.eclipse.stp.core.infrastructure.emf.EditModelException

Packages that use EditModelException
org.eclipse.stp.core.infrastructure.emf STP Core EMF Resource Management 
org.eclipse.stp.core.resources Resource Layer Integration 
org.eclipse.stp.core.util STP Core Utilites 
 

Uses of EditModelException in org.eclipse.stp.core.infrastructure.emf
 

Subclasses of EditModelException in org.eclipse.stp.core.infrastructure.emf
 class EditModelDisposedException
           
 

Methods in org.eclipse.stp.core.infrastructure.emf that throw EditModelException
 void IEditModel.addListener(IEditModelListener aListener)
          Track changes to the IEditModel including the addition or removal of Resources and the loading or unloading of Resources.
 void IEditModelScribbler.close(IProgressMonitor monitor)
          Close the resources described by this IEditModelScribbler's IScribblerDomains.
 IEditModelScribbler IEditModelFactory.createScribbler(IProject aProject, java.lang.String editModelLabel, IScribblerDomain[] domains, boolean toMakeReadonly)
          Clients may create a scribbler using an array of IScribblerDomains for a specific edit model (identified by {aProject, editModelLabel}.
 IEditModelScribbler IEditModel.createScribbler(IScribblerDomain[] theDomains, boolean makeReadOnly)
          The IEditModel creates IEditModelScribblers which then exposes artifact lifecylce methods like save(), close(), or revert().
 IEditModelScribbler IEditModelFactory.createScribblerForRead(IProject aProject, IScribblerDomain domain)
          Create a scribbler using the project and the given domain.
 IEditModelScribbler IEditModelFactory.createScribblerForRead(IProject aProject, java.lang.String editModelLabel, IScribblerDomain[] domains)
          Clients may create a scribbler using an array of IScribblerDomains for a specific edit model (identified by {aProject, editModelLabel}.
 IEditModelScribbler IEditModelFactory.createScribblerForWrite(IProject aProject, IScribblerDomain domain)
          Create a scribbler using the project and the given domain.
 IEditModelScribbler IEditModelFactory.createScribblerForWrite(IProject aProject, java.lang.String editModelLabel, IScribblerDomain[] domains)
          Clients may create a scribbler using an array of IScribblerDomains for a specific edit model (identified by {aProject, editModelLabel}.
 boolean IEditModelScribbler.deleteResource(IResourceDescriptor aResourceDescriptor, IProgressMonitor monitor)
          A deleted resource will only be removed from disk once save() is invoked.
 void IEditModelScribbler.discard(IProgressMonitor monitor)
          Discard changes in the resources described by this IEditModelScribbler's IScribblerDomains.
 IOperationHistory IEditModel.getOperationHistory()
          Return the command stack in use by this IEditModel.
 void IEditModelScribbler.revert(IProgressMonitor monitor)
          Revert all of the resources described by the set of IScribblerDomains used by this IEditModelScribbler.
 void IEditModelScribbler.save(boolean force, IProgressMonitor monitor)
          Persist all changes from the set of resources described by the IScribblerDomains.
 

Uses of EditModelException in org.eclipse.stp.core.resources
 

Methods in org.eclipse.stp.core.resources that throw EditModelException
 IEditModelScribbler CompositeScribblerDomain.createScribblerForRead()
           
 IEditModelScribbler ComponentTypeScribblerDomain.createScribblerForRead()
           
 IEditModelScribbler CompositeScribblerDomain.createScribblerForWrite()
           
 IEditModelScribbler ComponentTypeScribblerDomain.createScribblerForWrite()
           
 

Uses of EditModelException in org.eclipse.stp.core.util
 

Methods in org.eclipse.stp.core.util that throw EditModelException
 void ComponentTypeArtifactEdit.close(IProgressMonitor monitor)
           
 void ComponentTypeArtifactEdit.discard(IProgressMonitor monitor)
           
 void ComponentTypeArtifactEdit.save(boolean force, IProgressMonitor monitor)
           
 

Constructors in org.eclipse.stp.core.util with parameters of type EditModelException
ModelLifecycleException(EditModelException e)
           
 

Constructors in org.eclipse.stp.core.util that throw EditModelException
ComponentTypeArtifactEdit(ComponentTypeScribblerDomain aDomain, boolean toMakeReadOnly)