Thursday, April 28, 2011

Dynamic Implementation for Interface

Legacy class implements my interface and everytime I change my interface, i had to change the legacy class as well to provide a default implementation and to get rid of my compilation issues

I want a default implementation to be applied to this legacy class whenever I add new methods to my interface.

And, I still want the legacy class to be a child of my interface

How do I get around this problem.?