JLS 6.6.2 gives us the following restriction for the package-access of protected members.
A protected member or constructor of an object may be accessed from outside the package in which it is declared only by code that is responsible for the implementation of that object.
What did they mean responsible for implementation. Couldn't you get an example?
It means that you can't access a protected super-class member of a different instance of the same class.