Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a Maven Plugin that will automatically generate setters and getters with the corresponding JavaDocs?

I am aware that Eclipse/Netbeans will do this when you tell it to; however, it would be nice for the source to simply contain the skeleton and have Maven or another tool generate the repetitive stuff.

I would want to modify the source code so that a source jar can be compiled and used when debugging.

Thanks, Walter

share|improve this question

3 Answers

This isn't necessarily something that you want maven to do for you. It will make working with the code in the IDE harder, as the IDE won't necessarily know about the generated code.

That said, project lombok aims to do this properly through the use of an @Data annotation. It looks like it works well, but I haven't tried it. Do note that it's only got Eclipse support at present, no IDEA or NetBeans.

share|improve this answer
Lombok does offer a de-lombok option to generate java code without any reference to Lombok, to make working with other IDE's and some frameworks easier. – Tim Jan 25 '10 at 15:02
Lombok supports NetBeansm, and reportedly also JDeveloper. IDEA support is currently still missing. – Roel Spilker Feb 20 '10 at 15:32
The lombok-maven-plugin may be of interest. As long as the IDE supports Maven, you should be good with it. – AWhitford Sep 15 '11 at 7:43

You could try Modello, it allows you to specify a model and let the java be generated during the build by the modello-maven-plugin.

share|improve this answer

This is builtin. Press Ctrl-Return and then choose "Setter" "Getter" or "Setter and Getter"

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.