Only protected and public methods/variables
can be
inherited and/or overridden.
Private means you
can Only access it in that
class an no where else. Subclasses
can only invoke or override protected or public methods (or methods without access modifiers, if the superclass is in the same package) from their superclasses.
read more >>