views:

29

answers:

1

Is it possible in Eclipse to have the warnings displayed in the editor about Javadoc issues. for example, I often reanme / change parameters of methods and forget to update the javadoc accordingly. this would be great to notice that before the next Javadoc compilation.

Thanks in advance,

Raph

+3  A: 

Window > Preferences > Java > Compiler > Javadoc

When renaming use the refactor option - ALT + SHIFT + R. It will automatically rename javadoc param names as well.

Bozho