01 /*
02 * Created on Jun 28, 2004
03 *
04 * To change the template for this generated file go to
05 * Window - Preferences - Java - Code Generation - Code and Comments
06 */
07 package biz.xsoftware.examples.advanced;
08
09 import java.util.EventListener;
10
11 /**
12 * Listener interface to notify client of an event starting.
13 *
14 * @author Dean Hiller
15 */
16 public interface ScheduleListener extends EventListener {
17
18 /**
19 * @param title
20 */
21 void eventStarted(String title);
22
23 }
|