/** * This is the OldProvider implemementation of the interface -- nothing adapted here. *
Class Adapter Design Pattern example for COM1204 Summer 2003. * * @author Bob Futrelle * @version 0.1, 4 July 2003 * */ public class OldProvider implements Provider { public void doYourThing(){ System.out.println("Do'in the old thing."); } } // class OldProvider