up vote 7 down vote favorite
1
share [g+] share [fb]

Do you know an API to programmatically refactor Java code.

Preferably:

  • easy to use
  • support for rich refactorings
link|improve this question

feedback

3 Answers

up vote 4 down vote accepted

Jackpot API is quite complete for that kind of operation.

link|improve this answer
feedback

This only applies if you are working on a plugin obviously but both Eclipse (JDT) and NetBeans have public APIs which support refactoring.

link|improve this answer
feedback

See the DMS Software Reengineering Toolkit. It can parse Java to ASTs, provides a complete AST manipulation interface, as well as access to symbol tables. You can also apply source-to-source transformations (e.g, coded using Java fragments) to manipulate the code.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.