]> gitweb.fperrin.net Git - GpsPrune.git/blob - tim/prune/function/Cancellable.java
Version 13, August 2011
[GpsPrune.git] / tim / prune / function / Cancellable.java
1 package tim.prune.function;
2
3 /**
4  * Interface implemented by functions which can be cancelled
5  */
6 public interface Cancellable
7 {
8         /**
9          * Cancel the function
10          */
11         public void cancel();
12 }