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 87230

Summary: Code completion does not work for anonymous types
Product: java Reporter: Tim Lebedkov <lebedkov>
Component: UnsupportedAssignee: issues@java <issues>
Status: VERIFIED DUPLICATE    
Severity: blocker    
Priority: P3    
Version: 5.x   
Hardware: All   
OS: All   
Issue Type: DEFECT Exception Reporter:

Description Tim Lebedkov 2006-10-16 18:16:20 UTC
In a class that extends JComboBox:
        setRenderer(new DefaultListCellRenderer() {
            public Component getListCellRendererComponent(
                   JList list, Object value, int index, boolean isSelected,
                   boolean cellHasFocus) {
                super.getListCellRendererComponent(list, value, index, 
                        isSelected, cellHasFocus);
                setTe<----------Ctrl+Space here does not show "setText()"
            }
        });
Comment 1 Jiri Prox 2006-10-17 10:04:30 UTC
It's duplicate of issue 3549. It will be definitely fixed in 6.0.

*** This issue has been marked as a duplicate of 3549 ***
Comment 2 Tim Lebedkov 2006-11-08 08:38:42 UTC
ok