summaryrefslogtreecommitdiff
path: root/sources/shared/DoCallback.java
blob: 62398cfebce6c328a919db2cb36eafe38045fe47 (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://buetow.org - netcalendar@dev.buetow.org
 */

package shared;

/**
 * This interface specifies a callback routine.
 * @author Paul C. Buetow
 *
 */
public interface DoCallback {
    public void callback(Object o);
}