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.components;
04:
05: import fit.Counts;
06:
07: public interface FitClientListener {
08: public void acceptOutput(String output) throws Exception;
09:
10: public void acceptResults(Counts counts) throws Exception;
11:
12: public void exceptionOccurred(Exception e);
13: }
|