]> gitweb.fperrin.net Git - GpsPrune.git/blobdiff - 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
diff --git a/src/tim/prune/load/xml/GpxTag.java b/src/tim/prune/load/xml/GpxTag.java
new file mode 100644 (file)
index 0000000..b2d8ebc
--- /dev/null
@@ -0,0 +1,24 @@
+package tim.prune.load.xml;
+
+/**
+ * Class to hold a single tag value from a gpx file
+ */
+public class GpxTag
+{
+       /** value of tag */
+       private String _value = null;
+
+       /**
+        * @param inVal value to set
+        */
+       public void setValue(String inVal) {
+               _value = inVal;
+       }
+
+       /**
+        * @return value
+        */
+       public String getValue() {
+               return _value;
+       }
+}