Interface IRefactoringExecutionListener
-
public interface IRefactoringExecutionListener
Interface for refactoring execution listeners. Clients may register a refactoring execution listener with theIRefactoringHistoryService
obtained by callingRefactoringCore.getHistoryService()
in order to get informed about refactoring execution events.Note: this interface is intended to be implemented by clients.
- Since:
- 3.2
- See Also:
IRefactoringHistoryService
,RefactoringExecutionEvent
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
executionNotification(RefactoringExecutionEvent event)
Gets called if a refactoring execution event happened.
-
-
-
Method Detail
-
executionNotification
void executionNotification(RefactoringExecutionEvent event)
Gets called if a refactoring execution event happened.Implementors of this method should not rely on a fixed set of event types.
The event object is valid only for the duration of this method.
- Parameters:
event
- the refactoring execution event
-
-