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 219664 - Code completion should lookup for items in classes which contain the target type in their names
Summary: Code completion should lookup for items in classes which contain the target t...
Status: NEW
Alias: None
Product: java
Classification: Unclassified
Component: Editor (show other bugs)
Version: 7.3
Hardware: PC Windows 7
: P3 normal (vote)
Assignee: Dusan Balek
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-10-07 15:17 UTC by markiewb
Modified: 2012-10-07 15:18 UTC (History)
0 users

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments
Actual state of code completion (44.67 KB, image/png)
2012-10-07 15:18 UTC, markiewb
Details

Note You need to log in before you can comment on or make changes to this bug.
Description markiewb 2012-10-07 15:17:10 UTC
[ JDK VERSION : 1.6.35 ]

Code completion should lookup for items in classes which contain the target 
type in their names.

For example

JPanel p=new JPanel();
p.setBorder(<<CC here>>);

EXPECTED: The code completion popup should show items like
BorderFactory.createEmptyBorder()
BorderFactory.createCompoundBorder()
...

See screenshot
Comment 1 markiewb 2012-10-07 15:18:09 UTC
Created attachment 125536 [details]
Actual state of code completion