/** * This is the Provider interface -- only thing the Client sees and uses. *
Class Adapter Design Pattern example for COM1204 Summer 2003. * * @author Bob Futrelle * @version 0.1, 4 July 2003 * */ public interface Provider { void doYourThing(); } // interface Provider