Bug 43482

Summary: Type hierarchy does not work on local types
Product: [Eclipse Project] JDT Reporter: Martin Aeschlimann <martinae>
Component: CoreAssignee: JDT-Core-Inbox <jdt-core-inbox>
Status: RESOLVED WORKSFORME QA Contact:
Severity: normal    
Priority: P3    
Version: 3.0   
Target Milestone: 3.0 M4   
Hardware: PC   
OS: Windows XP   
Whiteboard:

Description Martin Aeschlimann CLA 2003-09-23 05:42:24 EDT
jdt.core preview 20030922

1. Create the following class A
2. In the outliner select 'Local' and open the type hierarchy
3. Local is directly under Object

public class A {

	protected void runTest() throws Throwable {
		class Local extends Vector {   
		}
		Runnable run= new Runnable() {
			public void run() {
			}
		};
	}
}
Comment 1 Martin Aeschlimann CLA 2003-09-23 05:48:11 EDT
'import java.util.Vector;' is there of course as well
Comment 2 Jerome Lanneluc CLA 2003-09-23 06:49:16 EDT
Works for me
Comment 3 Jerome Lanneluc CLA 2003-09-26 04:39:03 EDT
Closing