Bug 77659 - [select] Open Declaration does not work on generic methods
Summary: [select] Open Declaration does not work on generic methods
Status: RESOLVED WORKSFORME
Alias: None
Product: JDT
Classification: Eclipse Project
Component: Core (show other bugs)
Version: 3.1   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-03 11:09 EST by Christof Marti CLA
Modified: 2004-12-17 11:40 EST (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Christof Marti CLA 2004-11-03 11:09:16 EST
I200411022000

Having:
package test2;
public class A {
	public <T> void foo() {
		T t;
	}
}

package test2;
public class B {
	public void bar() {
		new A().<Integer>foo();
	}
}

Open Declaration does not work on the call to foo() from B#bar().
Comment 1 Dani Megert CLA 2004-11-03 12:00:48 EST
Same with hover and Ctrl+Click. We are using codeSelect to get the Java element
Comment 2 Jerome Lanneluc CLA 2004-12-17 11:40:50 EST
Verified this works in I20041216-2000