Class DeleteRefactoring
java.lang.Object
org.eclipse.core.runtime.PlatformObject
org.eclipse.ltk.core.refactoring.Refactoring
org.eclipse.ltk.core.refactoring.participants.ProcessorBasedRefactoring
org.eclipse.ltk.core.refactoring.participants.DeleteRefactoring
- All Implemented Interfaces:
IAdaptable
A generic delete refactoring. The actual refactoring is done
by the delete processor passed to the constructor.
This class is not intended to be subclassed by clients.
- Since:
- 3.0
- Restriction:
- This class is not intended to be subclassed by clients.
-
Constructor Summary
ConstructorDescriptionDeleteRefactoring
(DeleteProcessor processor) Constructs a new delete refactoring for the given processor. -
Method Summary
Modifier and TypeMethodDescriptionReturn the processor associated with this refactoring.Methods inherited from class org.eclipse.ltk.core.refactoring.participants.ProcessorBasedRefactoring
checkFinalConditions, checkInitialConditions, createChange, getAdapter, getName, getTextChange, isApplicable, setProcessor, toString
Methods inherited from class org.eclipse.ltk.core.refactoring.Refactoring
checkAllConditions, doGetRefactoringTickProvider, getRefactoringTickProvider, getValidationContext, setValidationContext
-
Constructor Details
-
DeleteRefactoring
Constructs a new delete refactoring for the given processor.- Parameters:
processor
- the delete processor
-
-
Method Details
-
getProcessor
Description copied from class:ProcessorBasedRefactoring
Return the processor associated with this refactoring. The method must not returnnull
. Implementors can override this method to return the processor to be used by this refactoring. Since 3.4, this method returns the processor passed inProcessorBasedRefactoring(RefactoringProcessor)
or byProcessorBasedRefactoring.setProcessor(RefactoringProcessor)
.- Overrides:
getProcessor
in classProcessorBasedRefactoring
- Returns:
- the processor associated with this refactoring
-