You don't extend an interface... you implement it. To use the methods found inside the interface, you must create an object of that type first. Ex.:


public class A
{
// here is a...