Bug 44061 - CodeAssist - no completion after class literal access
Summary: CodeAssist - no completion after class literal access
Status: VERIFIED FIXED
Alias: None
Product: JDT
Classification: Eclipse Project
Component: Core (show other bugs)
Version: 3.0   Edit
Hardware: PC Windows 2000
: P3 normal (vote)
Target Milestone: 3.0 M4   Edit
Assignee: David Audel CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2003-10-02 05:39 EDT by David Audel CLA
Modified: 2003-10-09 06:58 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 2003-10-02 05:39:24 EDT
1) create X.java
public class X {
  void foo() {
    bar(0,Object.class);
    bar(0,Obje<cursor>ct.class);
  }
  void bar(int i, Class j){
  }
}

2) do ctrl+space at cursor location

There is no proposal.
Comment 1 David Audel CLA 2003-10-02 05:45:31 EDT
invocationType was not reinitialized after the first 'class'.

Fixed.
Comment 2 David Audel CLA 2003-10-09 06:58:05 EDT
Verified.