-
Enhancement
-
Resolution: Fixed
-
P4
-
1.1, 1.1.3, 1.2.0
-
1.2beta4
-
generic, x86, sparc
-
solaris_2.5, solaris_2.5.1, windows_95
-
Verified
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".
/**
* 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".
- duplicates
-
JDK-4102072 Add information about replacement API in Deprecated API List
-
- Closed
-
-
JDK-4034233 Add @xref doc-comment tag (similar to @link)
-
- Closed
-
-
JDK-4034267 javadoc template: Add automatic link capability within descriptions
-
- Closed
-
-
JDK-4115787 Mapping of e-mail addresses within @authour tags
-
- Closed
-