I pass the object reference to the Util class. I try to call a protected method in the Util class, but I get a compile-time error -
The method setPositionChild(Field, int, int) from the type Manager is not visible
To call a protected method, is it required only in the implementation class? Can I pass the link to an external class and call the link there?
source share