Bug 77659

Summary: [select] Open Declaration does not work on generic methods
Product: [Eclipse Project] JDT Reporter: Christof Marti <christof_marti>
Component: CoreAssignee: JDT-Core-Inbox <jdt-core-inbox>
Status: RESOLVED WORKSFORME QA Contact:
Severity: normal    
Priority: P3 CC: daniel_megert
Version: 3.1   
Target Milestone: 3.1 M4   
Hardware: PC   
OS: Windows XP   
Whiteboard:

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