]> gitweb.fperrin.net Git - GpsPrune.git/blob - src/tim/prune/load/xml/GpxTag.java
Moved source into separate src directory due to popular request
[GpsPrune.git] / src / tim / prune / load / xml / GpxTag.java
1 package tim.prune.load.xml;
2
3 /**
4  * Class to hold a single tag value from a gpx file
5  */
6 public class GpxTag
7 {
8         /** value of tag */
9         private String _value = null;
10
11         /**
12          * @param inVal value to set
13          */
14         public void setValue(String inVal) {
15                 _value = inVal;
16         }
17
18         /**
19          * @return value
20          */
21         public String getValue() {
22                 return _value;
23         }
24 }