Bug 12873 - CodeAssist : missing proposal of method declaration
Summary: CodeAssist : missing proposal of method declaration
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 M5   Edit
Assignee: David Audel CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2002-04-05 10:29 EST by David Audel CLA
Modified: 2002-04-16 07:48 EDT (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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