]> gitweb.fperrin.net Git - GpsPrune.git/blobdiff - tim/prune/load/xml/GpxTag.java
Moved source into separate src directory due to popular request
[GpsPrune.git] / tim / prune / load / xml / GpxTag.java
diff --git a/tim/prune/load/xml/GpxTag.java b/tim/prune/load/xml/GpxTag.java
deleted file mode 100644 (file)
index b2d8ebc..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-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;
-       }
-}