Yes, it is
mandatory to implement all the methods in a class that implements an
interface unless and until that class is an Abstract class. You have two choices: -
implement every
method required by the
interface or - declare the missing
methods abstract in your class.May 12, 2011
read more >>