The problem you presented is nothing related to multiple inheritance. Neither is the class implementation that implements more than one interface.
When you define an interface you are just saying that the implementor of this interface should agree with a contract and implement all the methods defined on that interface.
A class implementation can implements more than one interface without problem, but the interface cannot conflict. In your case you are trying to implement two interfaces that declares a method with the same signature.
A method signature is composed by name and parameters type in java.
Definition: Two of the components of a method declaration comprise the
method signature—the method's name and the parameter types.
http://docs.oracle.com/javase/tutorial/java/javaOO/methods.html
In order to overload a method you need to have different signatures.
The multiple inheritance in Java is not allowed, as there is complex problems such as define which implementation should take place when method is implemented by two or more super classes. For this topic I suggest a look into the Diamond Problem
In fact interfaces are used in some situations to simulate multiple inheritance allowing classes to present a merged set of methods.