| Summary: | Rename published method refactoring [refactoring] | ||
|---|---|---|---|
| Product: | [Eclipse Project] JDT | Reporter: | Jason Yip <j.c.yip> |
| Component: | UI | Assignee: | JDT-UI-Inbox <jdt-ui-inbox> |
| Status: | RESOLVED WONTFIX | QA Contact: | |
| Severity: | enhancement | ||
| Priority: | P3 | CC: | akiezun |
| Version: | 2.1 | Keywords: | helpwanted |
| Target Milestone: | --- | ||
| Hardware: | All | ||
| OS: | All | ||
| Whiteboard: | |||
Good suggestion. an external contribution would be much appreciated here As of now 'LATER' and 'REMIND' resolutions are no longer supported. Please reopen this bug if it is still valid for you. |
Essentially Rename Method for framework/libraries. Can't just do a normal Rename Method because there may be external dependencies on the old method name. public void oldName() {} should become public Object newName() { ... } /** * @deprecated */ public Object oldName() { return newName(); } Obviously there are also more sophisticated scenarios with signature changes and package changes if renaming classes, etc.