1 /* 2 * Created on Apr 8, 2005 3 * 4 * written by Matthias Kempka 5 */ 6 package de.uka.ipd.coverage.plugin.launcher; 7 8 /** 9 * Created on Apr 8, 2005 10 * 11 * A TestStatusListener listenes to the State of the 12 * CoverageRemoteTestRunnerClient. 13 * 14 * Possible states are waiting (for data to be sent) and received. 15 * 16 * @author Matthias Kempka 17 */ 18 public interface TestStatusListener { 19 20 public void notifyWaiting(); 21 22 public void notifyDataReceived(); 23 } 24