I have class A, and interfaces I, J, K and L
I then have AB and finally class C
class AB extends A
class C extends AB implements I, J, K, L
Interface I requires a method void setSize(int size).
Class A already has a method setSize(int size){this.size = size;}
Am I correct in saying I still have to override class A's setSize and implement setSize in class C to get the implementation correct?