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 182085 - Hint for adding variable to outer class
Summary: Hint for adding variable to outer class
Status: NEW
Alias: None
Product: java
Classification: Unclassified
Component: Hints (show other bugs)
Version: -S1S-
Hardware: PC Mac OS X
: P4 normal (vote)
Assignee: Svata Dedic
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2010-03-16 08:35 UTC by Miloslav Metelka
Modified: 2013-09-02 14:23 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 Miloslav Metelka 2010-03-16 08:35:37 UTC
When typing in

class A {

  private final class Inner {
    void m() {
      var = true;|
    }
}

there could be a hint for adding the not-yet existing variable not only to the inner class but also to outer class.