]> gitweb.fperrin.net Git - GpsPrune.git/blob - tim/prune/function/Cancellable.java
ad5147445c97157f20065fde0088d54f2ba1391d
[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 }