Dural wrote:
> My experimentation seems to say yes, but I can't seem to find it
> explicitly stated so anywhere.
Its stated in the JLS, 6.6.1 Determining Accessibility, "Otherwise, if
the member or constructor is declared private, then access is permitted
if and only if it occurs within the body of the top level class (§7.6)
that encloses the declaration of the member or constructor."
http://java.sun.com/docs/books/jls/t...mes.html#6.6.1
Note that it says "body of the top level class", not the body of the
class whose member it is.
Patricia