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: public class NullSchedule implements Schedule {
06: public void add(ScheduleItem item) throws Exception {
07: }
08:
09: public void start() throws Exception {
10: }
11:
12: public void stop() throws Exception {
13: }
14: }
|