]> gitweb.fperrin.net Git - GpsPrune.git/blob - tim/prune/DataSubscriber.java
Version 1, September 2006
[GpsPrune.git] / tim / prune / DataSubscriber.java
1 package tim.prune;
2
3 /**
4  * Interface implemented by clients who want to know
5  * about changes made to the data or its selection
6  */
7 public interface DataSubscriber
8 {
9         /**
10          * Inform clients that data has been updated
11          */
12         public void dataUpdated();
13
14 }