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.updates;
04:
05: public interface Update {
06: public String getName();
07:
08: public String getMessage();
09:
10: public boolean shouldBeApplied() throws Exception;
11:
12: public void doUpdate() throws Exception;
13: }
|