Bug 114282

Summary: [quick fix] Provide a quick fix for Javadoc @see URL warnings
Product: [Eclipse Project] JDT Reporter: Gary Gregory <ggregory>
Component: UIAssignee: JDT-UI-Inbox <jdt-ui-inbox>
Status: ASSIGNED --- QA Contact:
Severity: enhancement    
Priority: P3    
Version: 3.1   
Target Milestone: ---   
Hardware: PC   
OS: All   
Whiteboard:

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.