Refactoring using RTC
2 answers
How does RTC handle a refactor? For example, if I have a class or variable that is renamed in release 10 and I need to make the change recursively, how can I do that using RTC and the eclipse IDE?
Hi
This can be done in Eclipse - and then RTC will record the changes for you. There is a Refactor menu item available in the editors via a right-button, and on the Package Explorer (and probably elsewhere) - and it will hunt through the Eclipse project and make changes to references. You can preview the changes too, just to be sure it is doing the right thing.
I am assuming you want to change all occurrences in that release only.
anthony
How does RTC handle a refactor? For example, if I have a class or variable that is renamed in release 10 and I need to make the change recursively, how can I do that using RTC and the eclipse IDE?
Hi
This can be done in Eclipse - and then RTC will record the changes for you. There is a Refactor menu item available in the editors via a right-button, and on the Package Explorer (and probably elsewhere) - and it will hunt through the Eclipse project and make changes to references. You can preview the changes too, just to be sure it is doing the right thing.
I am assuming you want to change all occurrences in that release only.
anthony
Yes, this is what I was looking for. Thanks!