Sorry I am a newbie to Java. I am trying to get my head around inheritance and subclass/superclass relationships in Java.
If classA is a subclass of classB, will classA\
ClassA will inherit all of classB's public and protected methods. It will NOT include classB's private methods.