Bug 10635 - Override methods not showing missing methods
Summary: Override methods not showing missing methods
Status: RESOLVED FIXED
Alias: None
Product: JDT
Classification: Eclipse Project
Component: Core (show other bugs)
Version: 2.0   Edit
Hardware: PC Windows 2000
: P2 normal (vote)
Target Milestone: 2.0 M4   Edit
Assignee: Jerome Lanneluc CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2002-03-03 09:24 EST by Michael Fraenkel CLA
Modified: 2002-03-08 09:55 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 Michael Fraenkel CLA 2002-03-03 09:24:14 EST
I have a class which implements a nested interface of another class.
public class A {
  public static interface C {
    void foo();
  }
}

public class B implements A.C {
}

I see in my task list errors saying that I need to provide an implementation.
However, when I click on Override methods in the Outline view, this method is
not listed.

Note: This is a simplification of my problem, I am not sure if this will 
actually cause the problem.
Comment 1 Martin Aeschlimann CLA 2002-03-07 12:19:54 EST
Problem in JDT core:
Super hierarchy of be does not contain any superinterfaces.
(To observer set a breakpoint in StubUtil.evalUnimplementedMethods:
  IType[] superInterfaces= hierarchy.getAllSuperInterfaces(type);
)
Comment 2 Jerome Lanneluc CLA 2002-03-08 09:55:16 EST
When finding the handle corresponding to an interface binding, we used the last 
segment of the compound name (which is 'A$C') instead of the source name.
Fixed.