Bug 192949 - Code completion with unresolved methods
Summary: Code completion with unresolved methods
Status: NEW
Alias: None
Product: JDT
Classification: Eclipse Project
Component: Core (show other bugs)
Version: 3.3   Edit
Hardware: PC Windows XP
: P3 enhancement (vote)
Target Milestone: ---   Edit
Assignee: David Audel CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-06-15 14:17 EDT by Genady Beryozkin CLA
Modified: 2007-06-18 04:10 EDT (History)
2 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Genady Beryozkin CLA 2007-06-15 14:17:32 EDT
I would like to see the following code completion:

class A {
   void method1() {
      method2(5); // error.
   }

   <cursor>
} 

When the code completion is invoked at cursor position, I'd like to see the completion:

void method2(int arg) {
 // TODO ....
}
Comment 1 Martin Aeschlimann CLA 2007-06-18 04:10:31 EDT
That's more or less the same what quick fix does. But I think it's a good idea.