Basics
The Pull Members Up refactoring allows you to move class members to a superclass or an interface, or interface to a superinterface .
Example
| Before | After |
|---|---|
// File Class.java public class Class extends SuperClass { public void publicMethod() { ... } public void hiddenMethod() { ... } } // File SuperClass.java public abstract class SuperClass { public abstract void publicMethod(); } |
// File Class.java public class Class extends SuperClass { public void publicMethod() { ... } } // File SuperClass.java public abstract class SuperClass { public abstract void publicMethod(); public void hiddenMethod() { ... } } |
Pulling members up
- Select the class to be moved to a superclass or interface.
- On the main menu or on the context menu, choose . The Pull Members Up dialog box appears.
- Select the destination object (interface or superclass).
- In the Members section, select the members you want to move.
- To move a method as abstract, select the check box in the column Make abstract next to the method in question.
- In the JavaDoc section, select the action to be applied on JavaDoc.
- Click Refactor to pull the selected members to their destination.