Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
Bug 148968 - [javadoc] compiler should warn for Method/MemberRef of unqualified inner type
Summary: [javadoc] compiler should warn for Method/MemberRef of unqualified inner type
Status: RESOLVED DUPLICATE of bug 119857
Alias: None
Product: JDT
Classification: Eclipse Project
Component: Core (show other bugs)
Version: 3.2   Edit
Hardware: PC Windows XP
: P3 minor (vote)
Target Milestone: ---   Edit
Assignee: JDT-Core-Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-06-28 06:41 EDT by Markus Keller CLA
Modified: 2006-06-28 06:56 EDT (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Markus Keller CLA 2006-06-28 06:41:33 EDT
I20060627-1200

Followup to 96237: The compiler should warn for Method/MemberRef of unqualified inner types:

public class Test {
    /**
     * @see Inner (javadoc 1.4 spits, 1.5 accepts, Eclipse always accepts)
     */
    public class Inner {
    	int fField;
    }
}
/**
 * Javadoc warns "reference not found" for all these; Eclipse accepts:
 * {@link Inner#Test.Inner()}
 * {@link Inner#equals(Object)}
 * {@link Inner#fField}
 */
class X extends Test {
    
}
Comment 1 Frederic Fusier CLA 2006-06-28 06:56:53 EDT

*** This bug has been marked as a duplicate of 119857 ***