Bug 114282 - [quick fix] Provide a quick fix for Javadoc @see URL warnings
Summary: [quick fix] Provide a quick fix for Javadoc @see URL warnings
Status: ASSIGNED
Alias: None
Product: JDT
Classification: Eclipse Project
Component: UI (show other bugs)
Version: 3.1   Edit
Hardware: PC All
: P3 enhancement (vote)
Target Milestone: ---   Edit
Assignee: JDT-UI-Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-10-28 22:09 EDT by Gary Gregory CLA
Modified: 2009-01-23 11:34 EST (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Gary Gregory CLA 2005-10-28 22:09:29 EDT
Provide a quick fix to address the Javadoc warning for an @see URL like:

/**
 * @see
http://java.sun.com/j2se/1.4.2/docs/guide/security/spec/security-spec.doc3.html#20211
 */

Such that it is changed to:

/**
 * @see <a
href="http://java.sun.com/j2se/1.4.2/docs/guide/security/spec/security-spec.doc3.html#20211">security-spec.doc3.html#20211</a>
 */

Or something similarly useful.
Putting the whole link in the content of the element cause another warning.
Comment 1 Tom Hofmann CLA 2005-10-31 04:25:11 EST
Valid request as per
http://java.sun.com/j2se/1.5.0/docs/tooldocs/windows/javadoc.html#@see

Moving to jdt.ui, where quick fix lives.