And if so are there Eclipse plugins that add those types of code refactoring to eclipse?
note:for C#/Java respectively.
And if so are there Eclipse plugins that add those types of code refactoring to eclipse?
note:for C#/Java respectively.
Most of the JetBrains ReSharper refactoring features are already in Eclipse.
But Eclipse Helios 3.6 (to be released in July) actually introduce one revised refactoring:
The Convert Member Type to Top Level refactoring has been renamed to Move Type to New File and now allows any secondary type in a file to be moved into its own file. The action continues to work for member types.
and it improves the Extract Method:
The Extract Method refactoring now handles selections that contain continue statements. To preserve the semantics of the existing code, the selection needs to include the last statement of the loop. In the extracted method, continue statements are changed to return
For a selection that would need multiple return values in the extracted method, Eclipse now lists the conflicting variables in the error message: