Download this file
1 2 3 4 5 6 7 8 9 10 11 12 13
package ls.graph.script; /** * An interface to a class that listens to the execution of an algorithm * @author Lior * */ public interface AlgorithmListener { public void executionStarted(Algorithm alg); public void executionEnded(Algorithm alg); public void startingStep(int stepIndex); }