You must enable the "-nodeprecated" option in the javadoc export wizard. Warning: this is a javadoc option, not a VM option.
I tested it in Eclipse 3.4 and it worked.
Edit: If only obsolete annotation is enabled, it does not work. You must include the @deprecated tag inside the javadoc method as well.
I donβt know if there is a way to tell javadoc to use @Deprecated anotation (which curiously has no message parameter to document why it is deprecated and what else needs to be used).
Edit: override method to-1.5
You must include the @deprecated tag (or indicator or something else) with the message that you want to display to the user in javadoc after " deprecated ".
public void setA(String value) ...
source share