Bug 90573 - [5.0][content assist] Eclipse does not recognize formal type parameters in Javadoc
Summary: [5.0][content assist] Eclipse does not recognize formal type parameters in Ja...
Status: RESOLVED DUPLICATE of bug 87868
Alias: None
Product: JDT
Classification: Eclipse Project
Component: Text (show other bugs)
Version: 3.1   Edit
Hardware: PC Windows XP
: P3 normal (vote)
Target Milestone: ---   Edit
Assignee: JDT-Text-Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-04-07 03:51 EDT by Jon Edvardsson CLA
Modified: 2005-04-26 17:28 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 Jon Edvardsson CLA 2005-04-07 03:51:14 EDT
Eclipse gives a warning for the link tag below saying that "the method
foo(Objects) in JavaDocTest is not applicable for arguments (T)".

public class JavaDocTest<T> {
	/**
	 * {@link #foo(T)}
	 */
	public void foo(T t) {
	}
}

Upon completion on "#fo", however, eclipse inserts "#foo(T)".
Comment 1 Frederic Fusier CLA 2005-04-26 13:01:16 EDT
Code assist in Javadoc is currently done in JDT/Text.
As reference are inferred to raw types (as javadoc.exe does), the right
completion would be obviously "#foo(Object)"...
Comment 2 Dani Megert CLA 2005-04-26 17:28:59 EDT

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