1 2 3 4 5 6 7 8 9 10 11 12 13 14
/* 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); }