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