KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > oddjob > Stoppable


1 package org.oddjob;
2
3 /**
4  * A class that implements this interface is able to stop executing.
5  *
6  * @author Rob Gordon
7  */

8
9 public interface Stoppable {
10     
11     /**
12      * Stop executing.
13      */

14     
15     public void stop();
16 }
17
Popular Tags