1 package org.oddjob;2 3 /**4 * A class that implements this interface is able to stop executing.5 * 6 * @author Rob Gordon7 */8 9 public interface Stoppable {10 11 /**12 * Stop executing.13 */14 15 public void stop();16 }17