1 package org.woehlke.computer.kurzweil.commons; 2 3 public interface Startable { 4 5 void start(); 6 void stop(); 7 8 }