]> gitweb.fperrin.net Git - GpsPrune.git/blob - tim/prune/save/xml/TagReceiver.java
Version 11, August 2010
[GpsPrune.git] / tim / prune / save / xml / TagReceiver.java
1 package tim.prune.save.xml;
2
3 /**
4  * Interface for receivers of tag strings
5  * used for reading tags from xml and reporting them back to a listener
6  */
7 public interface TagReceiver
8 {
9         /**
10          * Method to give a tag string to a listener
11          * @param inTag xml tag
12          */
13         public void reportTag(String inTag);
14 }