Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: hacked away most of confusing but uninformative intro paragraph; other minor edits

Wiki Markup
A nested class is any class whose declaration occurs within the body of another class or interface \[[JLS 2005|AA. Bibliography#JLS 05]\]. The use of a nested class is error-prone unless the semantics are well understood. A common notion is that only the outer class can access the contents of the nested class. Not only does the nested class have access to the private fields of the outer class, the same fields can be accessed by another class in the package depending on whether the nested class is declared public or if it contains public methods or constructors. By default, the {{javac}} compiler converts the accessibility of private methods of a nested class to package-private. 

Wiki Markup
Also, according to the Java Language Specification \[[JLS 2005|AA. Bibliography#JLS 05]\], [Section 8.3|http://java.sun.com/docs/books/jls/third_edition/html/classes.html#8.3] "Field Declarations"

...