when i work with access modifier i use this code. and i have a question about
polymorphism:
bA.prMethWE(); - i can`t use it but i cant change it type because it will fail overriding rules
bA.defMethWE(); - i can`t use it because it has default access modifier, but i can change it signature in derived class
i assume that if you use reference type of basic class you can`t use overridden method if in basic class it has protected and derived class that override this method place in separate package. (but it still must follow overriding rules)
and about default method from base class it will not considered like overridden if subclass place in separate package.
is my assumption right?