Uses of Class
org.eclipse.ltk.core.refactoring.participants.RefactoringProcessor
Packages that use RefactoringProcessor
Package
Description
Application programming interface to participant in existing rename, move and delete refactorings
if the refactoring provider supports participation.
-
Uses of RefactoringProcessor in org.eclipse.ltk.core.refactoring.participants
Subclasses of RefactoringProcessor in org.eclipse.ltk.core.refactoring.participantsModifier and TypeClassDescriptionclassA special processor that performs copy operations.classA special processor that performs delete operations.classA special processor that performs move operations.classA special processor that performs rename operations.Methods in org.eclipse.ltk.core.refactoring.participants that return RefactoringProcessorModifier and TypeMethodDescriptionCopyRefactoring.getProcessor()DeleteRefactoring.getProcessor()MoveRefactoring.getProcessor()ProcessorBasedRefactoring.getProcessor()Return the processor associated with this refactoring.RefactoringParticipant.getProcessor()Returns the processor that is associated with this participant.RenameRefactoring.getProcessor()Methods in org.eclipse.ltk.core.refactoring.participants with parameters of type RefactoringProcessorModifier and TypeMethodDescriptionParticipantExtensionPoint.getParticipants(RefactoringStatus status, RefactoringProcessor processor, Object element, RefactoringArguments arguments, IParticipantDescriptorFilter filter, String[] affectedNatures, SharableParticipants shared) Returns all participants for a given element.booleanRefactoringParticipant.initialize(RefactoringProcessor processor, Object element, RefactoringArguments arguments) Initializes the participant.static CopyParticipant[]ParticipantManager.loadCopyParticipants(RefactoringStatus status, RefactoringProcessor processor, Object element, CopyArguments arguments, String[] affectedNatures, SharableParticipants shared) Loads the copy participants for the given element.static CopyParticipant[]ParticipantManager.loadCopyParticipants(RefactoringStatus status, RefactoringProcessor processor, Object element, CopyArguments arguments, IParticipantDescriptorFilter filter, String[] affectedNatures, SharableParticipants shared) Loads the copy participants for the given element.static CreateParticipant[]ParticipantManager.loadCreateParticipants(RefactoringStatus status, RefactoringProcessor processor, Object element, CreateArguments arguments, String[] affectedNatures, SharableParticipants shared) Loads the create participants for the given element.static CreateParticipant[]ParticipantManager.loadCreateParticipants(RefactoringStatus status, RefactoringProcessor processor, Object element, CreateArguments arguments, IParticipantDescriptorFilter filter, String[] affectedNatures, SharableParticipants shared) Loads the create participants for the given element.static DeleteParticipant[]ParticipantManager.loadDeleteParticipants(RefactoringStatus status, RefactoringProcessor processor, Object element, DeleteArguments arguments, String[] affectedNatures, SharableParticipants shared) Loads the delete participants for the given element.static DeleteParticipant[]ParticipantManager.loadDeleteParticipants(RefactoringStatus status, RefactoringProcessor processor, Object element, DeleteArguments arguments, IParticipantDescriptorFilter filter, String[] affectedNatures, SharableParticipants shared) Loads the delete participants for the given element.static MoveParticipant[]ParticipantManager.loadMoveParticipants(RefactoringStatus status, RefactoringProcessor processor, Object element, MoveArguments arguments, String[] affectedNatures, SharableParticipants shared) Loads the move participants for the given element.static MoveParticipant[]ParticipantManager.loadMoveParticipants(RefactoringStatus status, RefactoringProcessor processor, Object element, MoveArguments arguments, IParticipantDescriptorFilter filter, String[] affectedNatures, SharableParticipants shared) Loads the move participants for the given element.static RenameParticipant[]ParticipantManager.loadRenameParticipants(RefactoringStatus status, RefactoringProcessor processor, Object element, RenameArguments arguments, String[] affectedNatures, SharableParticipants shared) Loads the rename participants for the given element.static RenameParticipant[]ParticipantManager.loadRenameParticipants(RefactoringStatus status, RefactoringProcessor processor, Object element, RenameArguments arguments, IParticipantDescriptorFilter filter, String[] affectedNatures, SharableParticipants shared) Loads the rename participants for the given element.voidProcessorBasedRefactoring.setProcessor(RefactoringProcessor processor) Sets the processor associated with this refactoring.Constructors in org.eclipse.ltk.core.refactoring.participants with parameters of type RefactoringProcessorModifierConstructorDescriptionProcessorBasedRefactoring(RefactoringProcessor processor) Creates a new processor based refactoring.