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 - Code completion does not work for anonymous types
Summary: Code completion does not work for anonymous types
Status: VERIFIED DUPLICATE of bug 3549
Alias: None
Product: java
Classification: Unclassified
Component: Unsupported (show other bugs)
Version: 5.x
Hardware: All All
: P3 blocker (vote)
Assignee: issues@java
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-10-16 18:16 UTC by Tim Lebedkov
Modified: 2007-09-26 09:14 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 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