Bug 249785

Summary: [javadoc][assist] Javadoc content assist after "@see #" does not work with deprecated member before
Product: [Eclipse Project] JDT Reporter: Markus Keller <markus.kell.r>
Component: CoreAssignee: David Audel <david_audel>
Status: VERIFIED FIXED QA Contact:
Severity: normal    
Priority: P3 CC: daniel_megert, frederic_fusier
Version: 3.5   
Target Milestone: 3.5 M3   
Hardware: PC   
OS: Windows XP   
Whiteboard:
Attachments:
Description Flags
Proposed fix none

Description Markus Keller CLA 2008-10-06 10:18:09 EDT
I20080930-0921

- have:

package xy;

public class Try {
	/**
	 * @deprecated bad
	 */
	public int field;


	/**
	 * @see #
	 */
	public void m() {
	}
}

- content assist after "@see #"
=> does not work (no proposals)

- remove deprecation from the field
=> content assist proposes members of xy.Try, as expected
Comment 1 David Audel CLA 2008-10-24 11:28:16 EDT
Created attachment 116059 [details]
Proposed fix
Comment 2 David Audel CLA 2008-10-24 11:30:21 EDT
Released for 3.5M3

Test added
  JavadocBugsCompletionModelTest#testBug249785a()
Comment 3 Jerome Lanneluc CLA 2008-10-28 10:01:57 EDT
Verified for 3.5M3 using I20081027-1800