| Other |
|---|
| 1.2.0 1.2beta4Fixed |
|
Duplicate :
|
|
|
Duplicate :
|
|
|
Duplicate :
|
|
|
Duplicate :
|
The @deprecated tag currently looks like this
/**
* Description...
*
* @deprecated Replaced by setEnabled(boolean)
*/
disable() {
// implementation
}
When you generate the HTML, the result looks like:
<a>java.awt.Component.disable()</a> replaced by setEnabled(boolean)
where "disable" has a link but "setEnabled" does not.
We need a new delimiter added to the @deprecated argument that indicates
to javadoc that a link should be added to "setEnabled".
We sometimes refer to this feature as "in-line @see tags".
|