Update of /cvsroot/mocklib/mocklib3/input/javasrc/biz/xsoftware/examples/timer
In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv24740/input/javasrc/biz/xsoftware/examples/timer
Added Files:
ScheduleListener.java
Log Message:
original commit of mocklib2 that will become mocklib3
--- NEW FILE: ScheduleListener.java ---
/*
* Created on Jun 28, 2004
*
* To change the template for this generated file go to
* Window - Preferences - Java - Code Generation - Code and Comments
*/
package biz.xsoftware.examples.timer;
import java.util.EventListener;
/**
* Listener interface to notify client of an event starting.
*
* @author Dean Hiller
*/
public interface ScheduleListener extends EventListener {
/**
* @param title
*/
void eventStarted(String title);
}
|