Is there any way to NOT implement all of the methods of an interface in an inheriting class?
The point of an interface is to guarantee that an object will outwardly behave as the interface specifies that it will
If you don't implement all methods of your interface, than you destroy the entire purpose of an interface.