views:

33

answers:

1

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
Agreed. Empty javadoc tags are completely useless. You should look to strip out these tags, rather than create more of them.
Steve