/* NetCalendar 2006, 2009 (c) Dipl.-Inform. (FH) Paul C. Buetow * http://netcalendar.buetow.org - netcalendar@dev.buetow.org */ package shared; /** * This interface specifies a callback routine. * @author buetow * */ public interface DoCallback { public void callback(Object o); }