summaryrefslogtreecommitdiff
path: root/sources/shared/DoCallback.java
blob: f7f5122609c3de4b56b08adb760bbff77c8e9d1c (plain)
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);
}