2

Possible Duplicate:
A Java API to generate Java source files

Is there a good library for generating Java source code (not bytecode)?

Community
  • 1
  • 1
Alexey Romanov
  • 160,869
  • 33
  • 291
  • 457

2 Answers2

1

CodeModel and Eclipse JDT worked for this fellow, and he ultimately chose CodeModel.

Community
  • 1
  • 1
Kaleb Brasee
  • 50,055
  • 8
  • 105
  • 112
0

Try this http://code.google.com/p/javaparser/ i use this to rewrite huge portions of my existing code base, also ASTs can be constructed with this and it is a readable wrapper written over eclipse core....

Raam
  • 1