org.netbeans.modules.refactoring.spi.ui |
|
Java Source File Name | Type | Comment |
ActionsImplementationProvider.java | Class | Create your own provider of this class and register it in META-INF services, if you want to
create your own implementations of refactorin actions.
For instance Java module wants to have refactoring rename action for java files.
So Java Refactoring module must implement 2 methods. |
CustomRefactoringPanel.java | Interface | Instances of CustomRefactoringComponent can do their initialization in
init() method. |
RefactoringCustomUI.java | Interface | Backward compatible extension to RefactoringUI providing custom preview panel. |
RefactoringUI.java | Interface | Interface representing UI for a refactoring. |
RefactoringUIBypass.java | Interface | This was historicaly intended to enhance RefactoringUI. |
TreeElement.java | Interface | Tree Elements are shown in Refactoring Preview. |
TreeElementFactory.java | Class | |
TreeElementFactoryImplementation.java | Interface | Register your own TreeElementFactoryImplementation into META-INF/services
if you want to build your own RefactoringPreview tree.
For instance Java Refactoring understand Java - specific objects e.g. |
UI.java | Class | |