This code show the error to add unimplemented methods.
public class Child implements IResponse
but this is not showing the error.
public class Child extends Parent implements IResponse
Could you explain why the second snippet was not enforced to implement the methods from Interface?
Is there anyway to enforce this for multiple inheritance?
Methods that
IResponsedeclares are defined inParent?