Menu

#92 Code completion retrieves inner class's methods

open
nobody
None
5
2007-12-02
2007-12-02
No

The class below will provide w() as a code completion candidate when you are coding within v() when it shouldn't since w() is a method of the inner class and not in the originating class.

class Outer{
public void v() {

}

class Inner {

public void w() {

}
}
}

Discussion


Log in to post a comment.