Class MoveRenameResourceChange
java.lang.Object
org.eclipse.ltk.core.refactoring.Change
org.eclipse.ltk.core.refactoring.resource.ResourceChange
org.eclipse.ltk.core.refactoring.resource.MoveRenameResourceChange
- All Implemented Interfaces:
IAdaptable
Change
that moves and renames a resource.- Since:
- 3.10
-
Field Summary
Fields inherited from class org.eclipse.ltk.core.refactoring.resource.ResourceChange
SAVE_IF_DIRTY, VALIDATE_DEFAULT, VALIDATE_NOT_DIRTY, VALIDATE_NOT_READ_ONLY
-
Constructor Summary
ModifierConstructorDescriptionMoveRenameResourceChange
(IResource source, IContainer target, String newName) Creates the change.protected
MoveRenameResourceChange
(IResource source, IContainer target, String newName, long stampToRestore, Change restoreSourceChange) Creates the change. -
Method Summary
Modifier and TypeMethodDescriptionReturns a descriptor of this change.protected IResource
Returns the resource of this change.getName()
Returns the human readable name of this change.final Change
perform
(IProgressMonitor monitor) Performs this change.void
setDescriptor
(ChangeDescriptor descriptor) Sets the change descriptor to be returned byChange.getDescriptor()
.Methods inherited from class org.eclipse.ltk.core.refactoring.resource.ResourceChange
checkIfModifiable, getModifiedElement, initializeValidationData, isValid, setValidationMethod, toString
Methods inherited from class org.eclipse.ltk.core.refactoring.Change
dispose, getAdapter, getAffectedObjects, getParent, isEnabled, setEnabled, setEnabledShallow
-
Constructor Details
-
MoveRenameResourceChange
Creates the change.- Parameters:
source
- the resource to movetarget
- the container the resource is moved to. An existing resource at the destination will be replaced.newName
- new name of resource
-
MoveRenameResourceChange
protected MoveRenameResourceChange(IResource source, IContainer target, String newName, long stampToRestore, Change restoreSourceChange) Creates the change.- Parameters:
source
- the resource to movetarget
- the container the resource is moved to. An existing resource at the destination will be replaced.newName
- the new name of the resource in the the target containerstampToRestore
- the stamp to restore on the moved resourcerestoreSourceChange
- the change to restore a resource at the source ornull
if no resource needs to be resourced.
-
-
Method Details
-
getDescriptor
Description copied from class:Change
Returns a descriptor of this change.Subclasses of changes created by
Refactoring.createChange(IProgressMonitor)
should override this method to return aRefactoringChangeDescriptor
. A change tree created by a particular refactoring is supposed to contain at most one change which returns a refactoring descriptor. Refactorings usually return an instance ofCompositeChange
in theirRefactoring.createChange(IProgressMonitor)
method which implements this method. The refactoring framework searches the change tree top-down until a refactoring descriptor is found.- Overrides:
getDescriptor
in classChange
- Returns:
- a descriptor of this change, or
null
if this change does not provide a change descriptor.
-
setDescriptor
Sets the change descriptor to be returned byChange.getDescriptor()
.- Parameters:
descriptor
- the change descriptor
-
perform
public final Change perform(IProgressMonitor monitor) throws CoreException, OperationCanceledException Description copied from class:Change
Performs this change. If this method is called on an invalid or disabled change object the result is unspecified. Changes should in general not respond toIProgressMonitor.isCanceled()
since canceling a change tree in the middle of its execution leaves the workspace in a half changed state.- Specified by:
perform
in classChange
- Parameters:
monitor
- a progress monitor- Returns:
- the undo change for this change object or
null
if no undo is provided - Throws:
CoreException
- if an error occurred during change executionOperationCanceledException
-
getModifiedResource
Description copied from class:ResourceChange
Returns the resource of this change.- Specified by:
getModifiedResource
in classResourceChange
- Returns:
- the resource of this change
-
getName
Description copied from class:Change
Returns the human readable name of this change. The name MUST not benull
.
-