Bug 79584 - [5.0] JavaModel: Method parameter type is not marked as type variable
Summary: [5.0] JavaModel: Method parameter type is not marked as type variable
Status: RESOLVED WONTFIX
Alias: None
Product: JDT
Classification: Eclipse Project
Component: Core (show other bugs)
Version: 3.0   Edit
Hardware: PC Windows XP
: P3 normal (vote)
Target Milestone: 3.1 M4   Edit
Assignee: JDT-Core-Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-11-26 13:18 EST by Martin Aeschlimann CLA
Modified: 2005-02-16 09:41 EST (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Martin Aeschlimann CLA 2004-11-26 13:18:37 EST
20041126

- Create the folloing code in a selfhosting workspace and open it in the editor
- set a break point in JavaElementLabels.getMethodLabel where the parameter
types are printed (change the method name to force a refresh)
- The signature of the type parameter is 'QT;' which marks the type as an
unresolved type. Should it be a type variable 'TT;'?

public interface Test<T> {
	void foo(T t);
}
Comment 1 Philipe Mulet CLA 2004-11-26 15:16:34 EST
This would require performing some resolution, which it doesn't. Qnames are
meant to represent all unresolved type names.