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 119694 - code-sense does not work for inner class
Summary: code-sense does not work for inner class
Status: NEW
Alias: None
Product: java
Classification: Unclassified
Component: Editor (show other bugs)
Version: 6.x
Hardware: All All
: P3 blocker (vote)
Assignee: Dusan Balek
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-10-22 20:35 UTC by damian_nb
Modified: 2013-09-02 14:22 UTC (History)
0 users

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description damian_nb 2007-10-22 20:35:54 UTC
This quite complex class is not fully supported by autocompletion

public class AccessToInnerClasses
{
	public class PublicInnerClass
	{
		public int a;
	}
}

class CheckAccess
{
	public CheckAccess()
	{
		AccessToInnerClasses outerClass = new AccessToInnerClasses();

		int a = outerClass./* #1 */new /* #2 */ PublicInnerClass().a;
	}
}

when cursor is in #1 or #2 and user presses Ctrl+Space new or PublicInnerClass is not displayed