I know that multiple inheritances between Interfaces is possible, e.g.:
public interface C extends A,B {...} //Where A, B and C are Interfaces
public class A implements C,D {...} valid
this is the way to implement multiple inheritence in java