Bug 169285

Summary: [quick fix] Javadoc warning "Missing #" does not have a Quick Fix.
Product: [Eclipse Project] JDT Reporter: Gary Gregory <ggregory>
Component: UIAssignee: JDT-UI-Inbox <jdt-ui-inbox>
Status: ASSIGNED --- QA Contact:
Severity: enhancement    
Priority: P3 CC: markus.kell.r
Version: 3.3   
Target Milestone: ---   
Hardware: PC   
OS: Windows XP   
Whiteboard: fix candidate

Description Gary Gregory CLA 2006-12-30 20:17:57 EST
Javadoc warning "Missing #" does not have a Quick Fix.

For example, this Javadoc causes a warning:

    /**
     * Return an Iterator for the lines in a <code>File</code> using the default encoding for the VM.
     *
     * @since Commons IO 1.3
     * @see lineIterator(File, String)
     */

The quick fix would change:

     * @see lineIterator(File, String)

to:

     * @see #lineIterator(File, String)

--

Version: 3.3.0
Build id: I20061214-1445
Comment 1 Olivier Thomann CLA 2007-01-01 13:21:16 EST
Moving to JDT/UI
Comment 2 Markus Keller CLA 2011-03-07 11:36:49 EST
Should also work for qualified references, e.g. {@link Integer.byteValue()}.