Bug 6111 - Missing completion
Summary: Missing completion
Status: RESOLVED FIXED
Alias: None
Product: JDT
Classification: Eclipse Project
Component: Core (show other bugs)
Version: 2.0   Edit
Hardware: PC Windows NT
: P3 normal (vote)
Target Milestone: 2.0 M4   Edit
Assignee: David Audel CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2001-11-20 11:37 EST by David Audel CLA
Modified: 2002-03-08 06:03 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 David Audel CLA 2001-11-20 11:37:41 EST
Step to reproduce :
- create a class X
  public class X {
    int bar;
    class Y extends X {
      void foo(){
        bar[cursor]
      }
    }
  }
- do ctrl + space in cursor location

a completion is present : this.bar
a possible completion is missing : X.this.bar
Comment 1 David Audel CLA 2001-11-20 12:24:32 EST
Another test case 

public class A {
  int bar;
}

public class X extends A{
  class Y extends A{
    void foo(){
      bar[cursor]
    }
  }
}
Comment 2 David Audel CLA 2002-03-07 11:42:56 EST

Fixed