interface StoreInterface { public void deliver(WidgetInterface widget); public WidgetInterface purchase(int [] type); } // $Log: StoreInterface.java,v $ // Revision 1.3 2003/07/18 19:11:32 rclayton // Have deliver() return nothing. // // Revision 1.2 2003/07/16 18:54:59 rclayton // Have purchase() return the widget bought. // // Revision 1.1 2003/07/15 19:31:06 rclayton // Initial revision //