Class TextFileDocumentProvider
- java.lang.Object
-
- org.eclipse.ui.editors.text.TextFileDocumentProvider
-
- All Implemented Interfaces:
IStorageDocumentProvider,IDocumentProvider,IDocumentProviderExtension,IDocumentProviderExtension2,IDocumentProviderExtension3,IDocumentProviderExtension4,IDocumentProviderExtension5
public class TextFileDocumentProvider extends Object implements IDocumentProvider, IDocumentProviderExtension, IDocumentProviderExtension2, IDocumentProviderExtension3, IDocumentProviderExtension5, IStorageDocumentProvider, IDocumentProviderExtension4
Shared document provider specialized forIFilebased domain elements. A text file document provider can have a parent document provider to which it may delegate calls i.e. instead of delegating work to a super class it delegates to a parent document provider. The parent chain acts as chain of command.Text file document providers use text file buffers to access the file content. This allows to share it between various clients including headless ones. Text file document providers should be preferred over file document providers due to this advantage.
Use a forwarding document provider if you need to ensure that all documents provided to clients are appropriately set up.
Clients can directly instantiate and configure this class with a suitable parent document provider or provide their own subclass.
- Since:
- 3.0
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description protected static classTextFileDocumentProvider.DocumentProviderOperationOperation created by the document provider and to be executed by the providers runnable context.protected classTextFileDocumentProvider.FileBufferListenerprotected static classTextFileDocumentProvider.FileInfoprotected static classTextFileDocumentProvider.NullProviderDeprecated.As of 3.3 - do not use
-
Constructor Summary
Constructors Constructor Description TextFileDocumentProvider()Creates a new text file document provider with no parent.TextFileDocumentProvider(IDocumentProvider parentProvider)Creates a new text file document provider which has the given parent provider.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidaboutToChange(Object element)Informs this document provider about upcoming changes of the given element.voidaddElementStateListener(IElementStateListener listener)Adds the given element state listener to this document provider.booleancanSaveDocument(Object element)Returns whether the document provided for the given element differs from its original state which would required that it be saved.voidchanged(Object element)Informs this document provider that the given element has been changed.protected voidcommitFileBuffer(IProgressMonitor monitor, TextFileDocumentProvider.FileInfo info, boolean overwrite)Commits the given file info's file buffer by changing the contents of the underlying file to the contents of this file buffer.protected ISchedulingRulecomputeSchedulingRule(IResource toCreateOrModify)Computes the scheduling rule needed to create or modify a resource.voidconnect(Object element)Connects the given element to this document provider.protected IAnnotationModelcreateAnnotationModel(IFile file)Creates and returns the annotation model for the given file.protected TextFileDocumentProvider.FileInfocreateEmptyFileInfo()Creates and returns a new and empty file info object.protected voidcreateFileFromDocument(IProgressMonitor monitor, IFile file, IDocument document)Creates the given file with the given document content.protected TextFileDocumentProvider.FileInfocreateFileInfo(Object element)Creates and returns the file info object for the given element.protected TextFileDocumentProvider.DocumentProviderOperationcreateSaveOperation(Object element, IDocument document, boolean overwrite)voiddisconnect(Object element)Disconnects the given element from this document provider.protected voiddisposeFileInfo(Object element, TextFileDocumentProvider.FileInfo info)Releases all resources described by given element's info object.protected voidexecuteOperation(TextFileDocumentProvider.DocumentProviderOperation operation, IProgressMonitor monitor)Executes the given operation in the providers runnable context.protected voidfireElementStateChangeFailed(Object element)Informs all registered element state listeners about the failed state change of the element.protected voidfireElementStateChanging(Object element)Informs all registered element state listeners about the current state change of the element.IAnnotationModelgetAnnotationModel(Object element)Returns the annotation model for the given element.protected Iterator<Object>getConnectedElementsIterator()Returns an iterator over the elements connected via this document provider.IContentTypegetContentType(Object element)Returns the content type of for the given element ornullif none could be determined.StringgetDefaultEncoding()Returns the default character encoding used by this provider.IDocumentgetDocument(Object element)Returns the document for the given element.protected Iterator<Object>getElements(IFileBuffer file)Returns an iterator for all the elements that are connected to this file buffer.StringgetEncoding(Object element)Returns the character encoding for the given element, ornullif the element is not managed by this provider.protected TextFileDocumentProvider.FileInfogetFileInfo(Object element)Returns the file info object for the given element.protected Iterator<TextFileDocumentProvider.FileInfo>getFileInfosIterator()Returns an iterator over this document provider's file info objects.protected IFileStoregetFileStore(TextFileDocumentProvider.FileInfo info)Returns the file store denoted by the given info.longgetModificationStamp(Object element)Returns the modification stamp of the given element.protected IRunnableContextgetOperationRunner(IProgressMonitor monitor)Returns the runnable context for this document provider.protected IDocumentProvidergetParentProvider()Returns the parent document provider.IProgressMonitorgetProgressMonitor()Returns this providers progress monitor.IStatusgetStatus(Object element)Returns the status of the given element.longgetSynchronizationStamp(Object element)Returns the time stamp of the last synchronization of the given element and its provided document.protected FilegetSystemFile(TextFileDocumentProvider.FileInfo info)Deprecated.As of 3.2, replaced bygetFileStore(org.eclipse.ui.editors.text.TextFileDocumentProvider.FileInfo)protected voidhandleCoreException(CoreException exception, String message)Defines the standard procedure to handleCoreExceptions.booleanisDeleted(Object element)Returns whether the given element has been deleted.booleanisModifiable(Object element)Returns whether the document provider thinks that the given element can persistently be modified.booleanisNotSynchronizedException(Object element, CoreException ex)Tells whether the given core exception is exactly the exception which is thrown for a non-synchronized element.booleanisReadOnly(Object element)Returns whether the document provider thinks that the given element is read-only.booleanisStateValidated(Object element)Returns whether the state of the given element has been validated.booleanisSynchronized(Object element)Returns whether the information provided for the given element is in sync with the element.protected booleanisSystemFileReadOnly(TextFileDocumentProvider.FileInfo info)Returns whether the system file denoted by the given info is read-only.booleanmustSaveDocument(Object element)Returns whether the document provided for the given element must be saved.voidremoveElementStateListener(IElementStateListener listener)Removes the given element state listener from this document provider.voidresetDocument(Object element)Resets the given element's document to its last saved state.voidsaveDocument(IProgressMonitor monitor, Object element, IDocument document, boolean overwrite)Saves the given document provided for the given element.voidsetCanSaveDocument(Object element)Marks the document managed for the given element as savable.voidsetEncoding(Object element, String encoding)Sets the encoding for the given element.voidsetParentDocumentProvider(IDocumentProvider parentProvider)Sets the given parent provider as this document provider's parent document provider.voidsetProgressMonitor(IProgressMonitor progressMonitor)Sets this providers progress monitor.protected voidsetUpSynchronization(TextFileDocumentProvider.FileInfo info)Sets up the synchronization for the document and the annotation mode.voidsynchronize(Object element)Synchronizes the document provided for the given element with the given element.voidupdateStateCache(Object element)Updates the state cache for the given element.voidvalidateState(Object element, Object computationContext)Validates the state of the given element.
-
-
-
Constructor Detail
-
TextFileDocumentProvider
public TextFileDocumentProvider()
Creates a new text file document provider with no parent.
-
TextFileDocumentProvider
public TextFileDocumentProvider(IDocumentProvider parentProvider)
Creates a new text file document provider which has the given parent provider.- Parameters:
parentProvider- the parent document provider
-
-
Method Detail
-
setParentDocumentProvider
public final void setParentDocumentProvider(IDocumentProvider parentProvider)
Sets the given parent provider as this document provider's parent document provider.- Parameters:
parentProvider- the parent document provider
-
getParentProvider
protected final IDocumentProvider getParentProvider()
Returns the parent document provider.- Returns:
- the parent document provider
-
getOperationRunner
protected IRunnableContext getOperationRunner(IProgressMonitor monitor)
Returns the runnable context for this document provider.- Parameters:
monitor- the progress monitor- Returns:
- the runnable context for this document provider
-
executeOperation
protected void executeOperation(TextFileDocumentProvider.DocumentProviderOperation operation, IProgressMonitor monitor) throws CoreException
Executes the given operation in the providers runnable context.- Parameters:
operation- the operation to be executesmonitor- the progress monitor- Throws:
CoreException- the operation's core exception
-
connect
public void connect(Object element) throws CoreException
Description copied from interface:IDocumentProviderConnects the given element to this document provider. This tells the provider that caller of this method is interested to work with the document provided for the given domain model element. By counting the invocations of this method anddisconnect(Object)this provider can assume to know the correct number of clients working with the document provided for that domain model element.The given element must not be
null.- Specified by:
connectin interfaceIDocumentProvider- Parameters:
element- the element- Throws:
CoreException- if the textual representation or the annotation model of the element could not be created
-
createEmptyFileInfo
protected TextFileDocumentProvider.FileInfo createEmptyFileInfo()
Creates and returns a new and empty file info object.Subclasses which extend
TextFileDocumentProvider.FileInfoshould override this method.- Returns:
- a new and empty object of type
FileInfo
-
createFileInfo
protected TextFileDocumentProvider.FileInfo createFileInfo(Object element) throws CoreException
Creates and returns the file info object for the given element.Subclasses which extend
TextFileDocumentProvider.FileInfowill probably have to extend this method as well.- Parameters:
element- the element- Returns:
- a file info object of type
FileInfoornullif none can be created - Throws:
CoreException- if the file info object could not successfully be created
-
setUpSynchronization
protected void setUpSynchronization(TextFileDocumentProvider.FileInfo info)
Sets up the synchronization for the document and the annotation mode.- Parameters:
info- the file info- Since:
- 3.2
-
createAnnotationModel
protected IAnnotationModel createAnnotationModel(IFile file)
Creates and returns the annotation model for the given file.- Parameters:
file- the file- Returns:
- the file's annotation model or
nullif none
-
disconnect
public void disconnect(Object element)
Description copied from interface:IDocumentProviderDisconnects the given element from this document provider. This tells the provider that the caller of this method is no longer interested in working with the document provided for the given domain model element. By counting the invocations ofconnect(Object)and of this method this provider can assume to know the correct number of clients working with the document provided for that domain model element.The given element must not be
null.- Specified by:
disconnectin interfaceIDocumentProvider- Parameters:
element- the element
-
disposeFileInfo
protected void disposeFileInfo(Object element, TextFileDocumentProvider.FileInfo info)
Releases all resources described by given element's info object.Subclasses which extend
TextFileDocumentProvider.FileInfowill probably have to extend this method as well.- Parameters:
element- the elementinfo- the element's file info object
-
getElements
protected Iterator<Object> getElements(IFileBuffer file)
Returns an iterator for all the elements that are connected to this file buffer.- Parameters:
file- the file buffer- Returns:
- an iterator for all elements connected with the given file buffer
-
getDocument
public IDocument getDocument(Object element)
Description copied from interface:IDocumentProviderReturns the document for the given element. Usually the document contains a textual presentation of the content of the element, or is the element itself.- Specified by:
getDocumentin interfaceIDocumentProvider- Parameters:
element- the element, ornull- Returns:
- the document, or
nullif none
-
resetDocument
public void resetDocument(Object element) throws CoreException
Description copied from interface:IDocumentProviderResets the given element's document to its last saved state. Element state listeners are notified both before (elementContentAboutToBeReplaced) and after (elementContentReplaced) the content is changed.- Specified by:
resetDocumentin interfaceIDocumentProvider- Parameters:
element- the element, ornull- Throws:
CoreException- if document could not be reset for the given element
-
saveDocument
public final void saveDocument(IProgressMonitor monitor, Object element, IDocument document, boolean overwrite) throws CoreException
Description copied from interface:IDocumentProviderSaves the given document provided for the given element.- Specified by:
saveDocumentin interfaceIDocumentProvider- Parameters:
monitor- a progress monitor to report progress and request cancelationelement- the element, ornulldocument- the documentoverwrite- indicates whether overwrite should be performed while saving the given element if necessary- Throws:
CoreException- if document could not be stored to the given element
-
createSaveOperation
protected TextFileDocumentProvider.DocumentProviderOperation createSaveOperation(Object element, IDocument document, boolean overwrite) throws CoreException
- Throws:
CoreException
-
commitFileBuffer
protected void commitFileBuffer(IProgressMonitor monitor, TextFileDocumentProvider.FileInfo info, boolean overwrite) throws CoreException
Commits the given file info's file buffer by changing the contents of the underlying file to the contents of this file buffer. After that call,isDirtyreturnsfalseandisSynchronizedreturnstrue.- Parameters:
monitor- the progress monitorinfo- the element's file info objectoverwrite- indicates whether the underlying file should be overwritten if it is not synchronized with the file system- Throws:
CoreException- if writing or accessing the underlying file fails
-
createFileFromDocument
protected void createFileFromDocument(IProgressMonitor monitor, IFile file, IDocument document) throws CoreException
Creates the given file with the given document content.- Parameters:
monitor- the progress monitorfile- the file to be createddocument- the document to be written to the file- Throws:
CoreException- if the creation of the file fails
-
getModificationStamp
public long getModificationStamp(Object element)
Description copied from interface:IDocumentProviderReturns the modification stamp of the given element.- Specified by:
getModificationStampin interfaceIDocumentProvider- Parameters:
element- the element- Returns:
- the modification stamp of the given element
-
getSynchronizationStamp
public long getSynchronizationStamp(Object element)
Description copied from interface:IDocumentProviderReturns the time stamp of the last synchronization of the given element and its provided document.- Specified by:
getSynchronizationStampin interfaceIDocumentProvider- Parameters:
element- the element- Returns:
- the synchronization stamp of the given element
-
isDeleted
public boolean isDeleted(Object element)
Description copied from interface:IDocumentProviderReturns whether the given element has been deleted.- Specified by:
isDeletedin interfaceIDocumentProvider- Parameters:
element- the element- Returns:
trueif the element has been deleted
-
mustSaveDocument
public boolean mustSaveDocument(Object element)
Description copied from interface:IDocumentProviderReturns whether the document provided for the given element must be saved.- Specified by:
mustSaveDocumentin interfaceIDocumentProvider- Parameters:
element- the element, ornull- Returns:
trueif the document must be saved, andfalseotherwise (including the element isnull)
-
canSaveDocument
public boolean canSaveDocument(Object element)
Description copied from interface:IDocumentProviderReturns whether the document provided for the given element differs from its original state which would required that it be saved.- Specified by:
canSaveDocumentin interfaceIDocumentProvider- Parameters:
element- the element, ornull- Returns:
trueif the document can be saved, andfalseotherwise (including the element isnull)
-
getAnnotationModel
public IAnnotationModel getAnnotationModel(Object element)
Description copied from interface:IDocumentProviderReturns the annotation model for the given element.- Specified by:
getAnnotationModelin interfaceIDocumentProvider- Parameters:
element- the element, ornull- Returns:
- the annotation model, or
nullif none
-
aboutToChange
public void aboutToChange(Object element)
Description copied from interface:IDocumentProviderInforms this document provider about upcoming changes of the given element. The changes might cause change notifications specific for the type of the given element. If this provider manages a document for the given element, the document provider must not change the document because of the notifications received afteraboutToChangehas been and beforechangedis called. In this case, it is assumed that the document is already up to date, e.g., a save operation is a typical case.The concrete nature of the change notification depends on the concrete type of the given element. If the element is, e.g., an
IResourcethe notification is a resource delta.- Specified by:
aboutToChangein interfaceIDocumentProvider- Parameters:
element- the element, ornull
-
changed
public void changed(Object element)
Description copied from interface:IDocumentProviderInforms this document provider that the given element has been changed. All notifications have been sent out. If this provider manages a document for the given element, the document provider must from now on change the document on the receipt of change notifications. The concrete nature of the change notification depends on the concrete type of the given element. If the element is, e.g., anIResourcethe notification is a resource delta.- Specified by:
changedin interfaceIDocumentProvider- Parameters:
element- the element, ornull
-
addElementStateListener
public void addElementStateListener(IElementStateListener listener)
Description copied from interface:IDocumentProviderAdds the given element state listener to this document provider. Has no effect if an identical listener is already registered.- Specified by:
addElementStateListenerin interfaceIDocumentProvider- Parameters:
listener- the listener
-
removeElementStateListener
public void removeElementStateListener(IElementStateListener listener)
Description copied from interface:IDocumentProviderRemoves the given element state listener from this document provider. Has no effect if an identical listener is not registered.- Specified by:
removeElementStateListenerin interfaceIDocumentProvider- Parameters:
listener- the listener
-
isReadOnly
public boolean isReadOnly(Object element)
Description copied from interface:IDocumentProviderExtensionReturns whether the document provider thinks that the given element is read-only. If this method returnstrue,saveDocumentcould fail. This method does not say anything about the document constructed from the given element. If the given element is not connected to this document provider, the return value is undefined. Document providers are allowed to use a cache to answer this question, i.e. there can be a difference between the "real" state of the element and the return value.- Specified by:
isReadOnlyin interfaceIDocumentProviderExtension- Parameters:
element- the element- Returns:
trueif the given element is read-only,falseotherwise
-
isModifiable
public boolean isModifiable(Object element)
Description copied from interface:IDocumentProviderExtensionReturns whether the document provider thinks that the given element can persistently be modified. This is orthogonal toisReadOnlyas read-only elements may be modifiable and writable elements may not be modifiable. If the given element is not connected to this document provider, the result is undefined. Document providers are allowed to use a cache to answer this question, i.e. there can be a difference between the "real" state of the element and the return value.- Specified by:
isModifiablein interfaceIDocumentProviderExtension- Parameters:
element- the element- Returns:
trueif the given element is modifiable,falseotherwise
-
validateState
public void validateState(Object element, Object computationContext) throws CoreException
Description copied from interface:IDocumentProviderExtensionValidates the state of the given element. This method may change the "real" state of the element. If using, it also updates the internal caches, so that this method may also change the results returned byisReadOnlyandisModifiable. If the given element is not connected to this document provider, the effect is undefined.- Specified by:
validateStatein interfaceIDocumentProviderExtension- Parameters:
element- the elementcomputationContext- the context in which the computation is performed, e.g., a SWT shell- Throws:
CoreException- if validating fails
-
isStateValidated
public boolean isStateValidated(Object element)
Description copied from interface:IDocumentProviderExtensionReturns whether the state of the given element has been validated.- Specified by:
isStateValidatedin interfaceIDocumentProviderExtension- Parameters:
element- the element- Returns:
trueif the state has been validated
-
updateStateCache
public void updateStateCache(Object element) throws CoreException
Description copied from interface:IDocumentProviderExtensionUpdates the state cache for the given element. This method may change the result returned byisReadOnlyandisModifiable. If the given element is not connected to this document provider, the effect is undefined.- Specified by:
updateStateCachein interfaceIDocumentProviderExtension- Parameters:
element- the element- Throws:
CoreException- if validating fails
-
setCanSaveDocument
public void setCanSaveDocument(Object element)
Description copied from interface:IDocumentProviderExtensionMarks the document managed for the given element as savable. I.e.canBeSaved(element)will returntrueafterwards.- Specified by:
setCanSaveDocumentin interfaceIDocumentProviderExtension- Parameters:
element- the element
-
getStatus
public IStatus getStatus(Object element)
Description copied from interface:IDocumentProviderExtensionReturns the status of the given element.- Specified by:
getStatusin interfaceIDocumentProviderExtension- Parameters:
element- the element- Returns:
- the status of the given element
-
synchronize
public void synchronize(Object element) throws CoreException
Description copied from interface:IDocumentProviderExtensionSynchronizes the document provided for the given element with the given element. After that callgetSynchronizationTimeStampandgetModificationTimeStampreturn the same value.- Specified by:
synchronizein interfaceIDocumentProviderExtension- Parameters:
element- the element- Throws:
CoreException- if the synchronization could not be performed
-
setProgressMonitor
public void setProgressMonitor(IProgressMonitor progressMonitor)
Description copied from interface:IDocumentProviderExtension2Sets this providers progress monitor.- Specified by:
setProgressMonitorin interfaceIDocumentProviderExtension2- Parameters:
progressMonitor- the progress monitor
-
getProgressMonitor
public IProgressMonitor getProgressMonitor()
Description copied from interface:IDocumentProviderExtension2Returns this providers progress monitor.- Specified by:
getProgressMonitorin interfaceIDocumentProviderExtension2- Returns:
- IProgressMonitor
-
isSynchronized
public boolean isSynchronized(Object element)
Description copied from interface:IDocumentProviderExtension3Returns whether the information provided for the given element is in sync with the element.- Specified by:
isSynchronizedin interfaceIDocumentProviderExtension3- Parameters:
element- the element- Returns:
trueif the information is in sync with the element,falseotherwise
-
isNotSynchronizedException
public boolean isNotSynchronizedException(Object element, CoreException ex)
Description copied from interface:IDocumentProviderExtension5Tells whether the given core exception is exactly the exception which is thrown for a non-synchronized element.- Specified by:
isNotSynchronizedExceptionin interfaceIDocumentProviderExtension5- Parameters:
element- the elementex- the core exception- Returns:
trueiff the given core exception is exactly the exception which is thrown for a non-synchronized element
-
getDefaultEncoding
public String getDefaultEncoding()
Description copied from interface:IStorageDocumentProviderReturns the default character encoding used by this provider.- Specified by:
getDefaultEncodingin interfaceIStorageDocumentProvider- Returns:
- the default character encoding used by this provider
-
getEncoding
public String getEncoding(Object element)
Description copied from interface:IStorageDocumentProviderReturns the character encoding for the given element, ornullif the element is not managed by this provider.- Specified by:
getEncodingin interfaceIStorageDocumentProvider- Parameters:
element- the element- Returns:
- the encoding for the given element
-
setEncoding
public void setEncoding(Object element, String encoding)
Description copied from interface:IStorageDocumentProviderSets the encoding for the given element. Ifencodingisnullthe workbench's character encoding should be used.- Specified by:
setEncodingin interfaceIStorageDocumentProvider- Parameters:
element- the elementencoding- the encoding to be used
-
getContentType
public IContentType getContentType(Object element) throws CoreException
Description copied from interface:IDocumentProviderExtension4Returns the content type of for the given element ornullif none could be determined. If the element's document can be saved, the returned content type is determined by the document's current content.- Specified by:
getContentTypein interfaceIDocumentProviderExtension4- Parameters:
element- the element- Returns:
- the content type or
null - Throws:
CoreException- if reading or accessing the underlying store fails
-
handleCoreException
protected void handleCoreException(CoreException exception, String message)
Defines the standard procedure to handleCoreExceptions. Exceptions are written to the plug-in log.- Parameters:
exception- the exception to be loggedmessage- the message to be logged
-
getFileStore
protected IFileStore getFileStore(TextFileDocumentProvider.FileInfo info)
Returns the file store denoted by the given info.- Parameters:
info- the element's file info object- Returns:
- the
IFileStorefor the given file info - Since:
- 3.2
-
getSystemFile
@Deprecated protected File getSystemFile(TextFileDocumentProvider.FileInfo info)
Deprecated.As of 3.2, replaced bygetFileStore(org.eclipse.ui.editors.text.TextFileDocumentProvider.FileInfo)Returns the system file denoted by the given info.- Parameters:
info- the element's file info object- Returns:
- the system file for the given file info
-
isSystemFileReadOnly
protected boolean isSystemFileReadOnly(TextFileDocumentProvider.FileInfo info)
Returns whether the system file denoted by the given info is read-only.- Parameters:
info- the element's file info object- Returns:
trueiff read-only
-
getFileInfo
protected TextFileDocumentProvider.FileInfo getFileInfo(Object element)
Returns the file info object for the given element.- Parameters:
element- the element- Returns:
- the file info object, or
nullif none
-
getConnectedElementsIterator
protected Iterator<Object> getConnectedElementsIterator()
Returns an iterator over the elements connected via this document provider.- Returns:
- an iterator over the list of elements
-
getFileInfosIterator
protected Iterator<TextFileDocumentProvider.FileInfo> getFileInfosIterator()
Returns an iterator over this document provider's file info objects.- Returns:
- the iterator over list of file info objects
-
fireElementStateChanging
protected void fireElementStateChanging(Object element)
Informs all registered element state listeners about the current state change of the element.- Parameters:
element- the element- See Also:
IElementStateListenerExtension.elementStateChanging(Object)
-
fireElementStateChangeFailed
protected void fireElementStateChangeFailed(Object element)
Informs all registered element state listeners about the failed state change of the element.- Parameters:
element- the element- See Also:
IElementStateListenerExtension.elementStateChangeFailed(Object)
-
computeSchedulingRule
protected ISchedulingRule computeSchedulingRule(IResource toCreateOrModify)
Computes the scheduling rule needed to create or modify a resource. If the resource exists, its modify rule is returned. If it does not, the resource hierarchy is iterated towards the workspace root to find the first parent oftoCreateOrModifythat exists. Then the 'create' rule for the last non-existing resource is returned.- Parameters:
toCreateOrModify- the resource to create or modify- Returns:
- the minimal scheduling rule needed to modify or create a resource
- Since:
- 3.1
-
-