This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 195271 - [cc] Code completion for inner classes doesn't work
Summary: [cc] Code completion for inner classes doesn't work
Status: NEW
Alias: None
Product: groovy
Classification: Unclassified
Component: Editor (show other bugs)
Version: 7.0
Hardware: Other Linux
: P3 normal (vote)
Assignee: Martin Janicek
URL:
Keywords:
Depends on:
Blocks: 211896
  Show dependency tree
 
Reported: 2011-02-10 06:45 UTC by ruado1987
Modified: 2012-10-09 13:05 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description ruado1987 2011-02-10 06:45:13 UTC
Product Version = NetBeans IDE 7.0 Beta (Build 201011152355)
Operating System = Linux version 2.6.35-25-generic running on i386
Java; VM; Vendor = 1.6.0_23
Runtime = Java HotSpot(TM) Client VM 19.0-b09
Comment 1 Martin Janicek 2011-12-02 13:15:41 UTC
Can you please attach some example, so I'll be able to reproduce the issue?
Comment 2 Martin Janicek 2012-03-13 15:21:07 UTC
I've found the original problem:

class Outer {
    private class Inner {
    }
    Inner i = new In^
}

=> Expected: Completion at caret location shows Inner class constructor
   Actual:   Nothing is proposed

and similar case:

class Outer {
    private class Inner {
    }
    In^
}

=> Expected: Completion at caret location shows Inner class type
   Actual:   Nothing is proposed