Given 2 interfaces:
public interface BaseInterface { } public interface ExtendedInterface extends BaseInterface {} >
public interface BaseInterface { } public interface ExtendedInterface extends BaseInterface {}
I think about the only option I can think of is to inspect a generic method which is declared by BaseInterface, and not overridden.
BaseInterface