1 package com.googlecode.t7mp; 2 3 /** 4 * Simple Interface for Stoppable Instances. 5 * 6 * 7 * @author Joerg Bellmann 8 * 9 */ 10 public interface Stoppable { 11 12 void stop(); 13 14 }