Is there a way to make eclipse go through my project and add javadoc to all the method headers? Possible authors to the classes?
+2
A:
As far as I know this feature does not exist, although there might be a plugin that does it.
I would also advise strongly against this. JavaDoc should provide information to developers where needed, not cover the code in a blanket of generated (soon out of date) twaddle.
Adriaan Koster
2010-03-16 17:53:05
Agreed. Empty javadoc tags are completely useless. You should look to strip out these tags, rather than create more of them.
Steve
2010-05-20 21:59:43