I want something similar to protected, where only a class which implements the "protected" field and anything that subclasses it can access it. So, I want to be able to declare a variable in the base class as "private," but still be able to access it from a subclass.
Perhaps this is against he very nature of the subclass, private, and/or protected.
Does something like this exist in Java?