java - Implement refactoring logic using eclipse Refactor API -


I have developed a Java application that shows your current code in the input user source code and graphical package structure. Then the application will be applied on the basis of user input and other algorithm, output custom file that will define new package structure for client code.

Now, I want to refocus the user code based on this new package structure. Since Eclipse has a powerful refactoring feature, I want to know whether any API or Eclipse library is available, which I can use in my application for implementation of refactoring logic?

PS: After completing my application later, I want to deploy my application as a plugin in Eclipse. This is the reason I want to use the Eclipse Refactoring feature.


Comments