Bug 169285 - [quick fix] Javadoc warning "Missing #" does not have a Quick Fix.
Summary: [quick fix] Javadoc warning "Missing #" does not have a Quick Fix.
Status: ASSIGNED
Alias: None
Product: JDT
Classification: Eclipse Project
Component: UI (show other bugs)
Version: 3.3   Edit
Hardware: PC Windows XP
: P3 enhancement (vote)
Target Milestone: ---   Edit
Assignee: JDT-UI-Inbox CLA
QA Contact:
URL:
Whiteboard: fix candidate
Keywords:
Depends on:
Blocks:
 
Reported: 2006-12-30 20:17 EST by Gary Gregory CLA
Modified: 2011-03-07 11:36 EST (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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()}.