Bug 249785 - [javadoc][assist] Javadoc content assist after "@see #" does not work with deprecated member before
Summary: [javadoc][assist] Javadoc content assist after "@see #" does not work with de...
Status: VERIFIED FIXED
Alias: None
Product: JDT
Classification: Eclipse Project
Component: Core (show other bugs)
Version: 3.5   Edit
Hardware: PC Windows XP
: P3 normal (vote)
Target Milestone: 3.5 M3   Edit
Assignee: David Audel CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-10-06 10:18 EDT by Markus Keller CLA
Modified: 2008-10-28 10:01 EDT (History)
2 users (show)

See Also:


Attachments
Proposed fix (2.24 KB, patch)
2008-10-24 11:28 EDT, David Audel CLA
no flags Details | Diff

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