| Article: |
Nested Classes, Part 1 | |
| Subject: | Accessing Protected Members | |
| Date: | 2004-05-18 14:33:35 | |
| From: | Robert Simmons Jr. (Kraythe) | |
|
Response to: Accessing Protected Members
|
||
|
That is because protected members of a class are accessible to classes in the same package. I suppose I should have said that the other class needs to be in another package to be more clear.
|
||
Showing messages 1 through 1 of 1.
-
Accessing Protected Members
2004-05-18 21:28:10 bdell [View]



Given the way inner classes are implemented, it seems natural to provide access as the accessor method the inner class depends on would have access to protected members of the enclosing class's super-class and, as I wrote before, it seems consistent with the definition of protected access. I couldn't find anything in the Java Language Specification that said protected members in this circumstance shouldn't be accessible.