Community
Participate
Working Groups
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 { }
*** This bug has been marked as a duplicate of 119857 ***