1: // Copyright (C) 2003,2004,2005 by Object Mentor, Inc. All rights reserved.
2: // Released under the terms of the GNU General Public License version 2 or later.
3: package fitnesse.schedule;
4:
5: public interface ScheduleItem {
6: public boolean shouldRun(long time) throws Exception;
7:
8: public void run(long time) throws Exception;
9: }
|