Bug 221539

Summary: [javadoc] doesn't detect non visible inner class
Product: [Eclipse Project] JDT Reporter: Martin Aeschlimann <martinae>
Component: CoreAssignee: Satyam Kandula <satyam.kandula>
Status: VERIFIED FIXED QA Contact:
Severity: normal    
Priority: P3 CC: daniel_megert, frederic_fusier, jerome_lanneluc
Version: 3.4   
Target Milestone: 3.7 M6   
Hardware: PC   
OS: Windows XP   
Whiteboard:

Description Martin Aeschlimann CLA 2008-03-05 11:27:18 EST
20080305

The following problem was the cause for releng-build failure bug 221519:

In the code example, Javadoc command does not like the link {@link Test.Inner}.

warning - Tag @link: reference not found: Test.Inner

It would be good if the compiler can also warn for this reference.

---------
package p;
/**
 * {@link Test.Inner} not ok for Javadoc
 * {@link Foo.Inner} ok for Javadoc
 */
public class Test extends Foo {
}

----------
package p;

public class Foo {
	/**
	 * Inner
	 */
	static class Inner {
		
	}
	
}
Comment 1 Eric Jodet CLA 2008-05-19 10:16:14 EDT
patch for bug 221188 fixes this issue
Comment 2 Jerome Lanneluc CLA 2008-05-20 07:54:09 EDT
This is not a regression comparing to 3.3.2. Will fix in 3.5
Comment 3 Eric Jodet CLA 2008-06-04 10:22:34 EDT
(In reply to comment #1)
> patch for bug 221188 fixes this issue
> 
typo: please read bug 222188

Comment 4 Frederic Fusier CLA 2008-09-12 12:03:55 EDT
Not sure I'll have enough time to review the patch proposed in bug 222188 for 3.5...
Comment 5 Srikanth Sankaran CLA 2010-01-13 01:45:06 EST
Satyam, please investigate, thanks
Comment 6 Satyam Kandula CLA 2011-02-28 01:54:02 EST
Patch in bug 222188 also fixes this problem.
Comment 7 Dani Megert CLA 2011-03-01 10:36:00 EST
Verified in N20110228-2000.