one accessibility feature missing?
I was just reading protected specifier in C#, that an idea came to my mind
is there a way i can restrict a member in my class to only derived classes and the class in which it is defined, and not any other class defined within the same package?
protected specifier in C# provides this feature, and uses another specifier protected internal to provide feature equivalent to protected in JAVA
does an added specifier specifier is missing in JAVA?

