01: // Copyright (C) 2003,2004,2005 by Object Mentor, Inc. All rights reserved.
02: // Released under the terms of the GNU General Public License version 2 or later.
03: package fitnesse.schedule;
04:
05: // Runs scheduled tasks.
06: public interface Schedule {
07: public void add(ScheduleItem item) throws Exception;
08:
09: public void start() throws Exception;
10:
11: public void stop() throws Exception;
12: }
|