Bug 12873

Summary: CodeAssist : missing proposal of method declaration
Product: [Eclipse Project] JDT Reporter: David Audel <david_audel>
Component: CoreAssignee: David Audel <david_audel>
Status: RESOLVED FIXED QA Contact:
Severity: normal    
Priority: P2    
Version: 2.0   
Target Milestone: 2.0 M5   
Hardware: PC   
OS: Windows 2000   
Whiteboard:

Description David Audel CLA 2002-04-05 10:29:54 EST
1) create an interface I
interface I {
  void foo();
}
2) create an abstract class X which implements I
public class X implements I {
  foo<cursor>
}
3) do ctrl+space at cursor location
the method foo is not proposed

The problem is that a default abstract method already exists in X. That's why 
completion engine does not propose this method.
Comment 1 Philipe Mulet CLA 2002-04-05 10:52:30 EST
Then it should propose to override default abstract methods too...

Comment 2 David Audel CLA 2002-04-08 12:06:32 EDT
Fixed