1.

What Is Refactoring And How Is Refactoring In Eclipse Done?

Answer»

Refactoring is the process of RESTRUCTURING the code without changing its behavior.

For EXAMPLE renaming a Java class or METHOD is a refactoring activity.

Eclipse supports several refactoring activities, for example renaming or MOVING.

E.g.:To use the Rename refactoring, you can right-click on your class (in the editor or Package Explorer) and select Refactor ? Rename to rename your class. Eclipse will MAKE sure that all calls in your Workspace to your class or method are renamed.

Refactoring is the process of restructuring the code without changing its behavior.

For example renaming a Java class or method is a refactoring activity.

Eclipse supports several refactoring activities, for example renaming or moving.

E.g.:To use the Rename refactoring, you can right-click on your class (in the editor or Package Explorer) and select Refactor ? Rename to rename your class. Eclipse will make sure that all calls in your Workspace to your class or method are renamed.



Discussion

No Comment Found