Hi,
I'm working with a framework, but for sometimes I need to alter some methods by overloading classes.
My problem is when a class B inherits from a class A and where I need to overload them both, eg:
class B extends A {}
First I overload A and B, in order to alter some of their methods:
class AA extends A {}
class BB extends B {}
But then what to do for BB extends from AA
In others words ('<--' means extends):
class B <--- class A
^ ^
| |
| |
class BB <-?- class AA