X-Git-Url: http://gitweb.fperrin.net/?p=GpsPrune.git;a=blobdiff_plain;f=src%2Ftim%2Fprune%2Fload%2Fxml%2FGpxTag.java;fp=src%2Ftim%2Fprune%2Fload%2Fxml%2FGpxTag.java;h=b2d8ebc33c6ce4e365b2a3e2671bc7e43c175d92;hp=0000000000000000000000000000000000000000;hb=ce6f2161b8596f7018d6a76bff79bc9e571f35fd;hpb=2d8cb72e84d5cc1089ce77baf1e34ea3ea2f8465 diff --git a/src/tim/prune/load/xml/GpxTag.java b/src/tim/prune/load/xml/GpxTag.java new file mode 100644 index 0000000..b2d8ebc --- /dev/null +++ b/src/tim/prune/load/xml/GpxTag.java @@ -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; + } +}