in .Net you can simply do this with the following code
Public class MyClass:ISomeInterface, SomeBaseClass
Can something similar be done in Java?
The code I have is as follows
public class InputHander extends OnTouchListener implements IControlHandler
However I get the error "no interface expected here" with regards to OnTouchListener