Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/SingleSegmentGpxTrack.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/SingleSegmentGpxTrack.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/SingleSegmentGpxTrack.java	(revision 23191)
@@ -11,33 +11,33 @@
 public class SingleSegmentGpxTrack implements GpxTrack {
 
-	private final Map<String, Object> attributes;
-	private final GpxTrackSegment trackSegment;
+    private final Map<String, Object> attributes;
+    private final GpxTrackSegment trackSegment;
 
-	public SingleSegmentGpxTrack(GpxTrackSegment trackSegment, Map<String, Object> attributes) {
-		this.attributes = Collections.unmodifiableMap(attributes);
-		this.trackSegment = trackSegment;
-	}
+    public SingleSegmentGpxTrack(GpxTrackSegment trackSegment, Map<String, Object> attributes) {
+        this.attributes = Collections.unmodifiableMap(attributes);
+        this.trackSegment = trackSegment;
+    }
 
 
-	public Map<String, Object> getAttributes() {
-		return attributes;
-	}
+    public Map<String, Object> getAttributes() {
+        return attributes;
+    }
 
-	public Bounds getBounds() {
-		return trackSegment.getBounds();
-	}
+    public Bounds getBounds() {
+        return trackSegment.getBounds();
+    }
 
-	public Collection<GpxTrackSegment> getSegments() {
-		return Collections.singleton(trackSegment);
-	}
+    public Collection<GpxTrackSegment> getSegments() {
+        return Collections.singleton(trackSegment);
+    }
 
-	public double length() {
-		return trackSegment.length();
-	}
+    public double length() {
+        return trackSegment.length();
+    }
 
-	@Override
-	public int getUpdateCount() {
-		return trackSegment.getUpdateCount();
-	}
+    @Override
+    public int getUpdateCount() {
+        return trackSegment.getUpdateCount();
+    }
 
 }
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/TangoGPS.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/TangoGPS.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/TangoGPS.java	(revision 23191)
@@ -34,79 +34,79 @@
 public class TangoGPS extends FileImporter {
 
-	public TangoGPS() {
-		super(new ExtensionFileFilter("log", "log",tr("TangoGPS Files (*.log)")));
-	}
+    public TangoGPS() {
+        super(new ExtensionFileFilter("log", "log",tr("TangoGPS Files (*.log)")));
+    }
 
-	/**
-	 * @author cbrill
-	 * This function imports data from file and adds trackpoints
-	 *         to a layer.
-	 * Read a log file from TangoGPS. These are simple text files in the
-	 * form: <lat>,<lon>,<elevation>,<speed>,<course>,<hdop>,<datetime>
-	 */
-	@Override
-	public void importData(File file, ProgressMonitor progressMonitor) throws IOException {
-		// create the data tree
-		List<WayPoint> currentTrackSeg = new ArrayList<WayPoint>();
+    /**
+     * @author cbrill
+     * This function imports data from file and adds trackpoints
+     *         to a layer.
+     * Read a log file from TangoGPS. These are simple text files in the
+     * form: <lat>,<lon>,<elevation>,<speed>,<course>,<hdop>,<datetime>
+     */
+    @Override
+    public void importData(File file, ProgressMonitor progressMonitor) throws IOException {
+        // create the data tree
+        List<WayPoint> currentTrackSeg = new ArrayList<WayPoint>();
 
-		int imported = 0;
-		int failure = 0;
+        int imported = 0;
+        int failure = 0;
 
-		BufferedReader rd = null;
-		try {
-			InputStream source = new FileInputStream(file);
-			rd = new BufferedReader(new InputStreamReader(source));
+        BufferedReader rd = null;
+        try {
+            InputStream source = new FileInputStream(file);
+            rd = new BufferedReader(new InputStreamReader(source));
 
-			String line;
-			while ((line = rd.readLine()) != null) {
-				failure++;
-				String[] lineElements = line.split(",");
-				if (lineElements.length >= 7) {
-					try {
-						WayPoint currentWayPoint = new WayPoint(
-								parseLatLon(lineElements));
-						currentWayPoint.attr.put("ele", lineElements[2]);
-						currentWayPoint.attr.put("time", lineElements[6]);
-						currentWayPoint.setTime();
-						currentTrackSeg.add(currentWayPoint);
-						imported++;
-					} catch (NumberFormatException e) {
-						e.printStackTrace();
-					}
-				}
-			}
-			failure = failure - imported;
-			if(imported > 0) {
-				GpxData data = new GpxData();
-				data.tracks.add(new SingleSegmentGpxTrack(new ImmutableGpxTrackSegment(currentTrackSeg), Collections.<String, Object>emptyMap()));
-				data.recalculateBounds();
-				data.storageFile = file;
-				GpxLayer gpxLayer = new GpxLayer(data, file.getName());
-				Main.main.addLayer(gpxLayer);
-				if (Main.pref.getBoolean("marker.makeautomarkers", true)) {
-					MarkerLayer ml = new MarkerLayer(data, tr("Markers from {0}", file.getName()), file, gpxLayer);
-					if (ml.data.size() > 0) {
-						Main.main.addLayer(ml);
-					}
-				}
-			}
-			showInfobox(imported,failure);
-		} finally {
-			if (rd != null) {
-				rd.close();
-			}
-		}
-	}
+            String line;
+            while ((line = rd.readLine()) != null) {
+                failure++;
+                String[] lineElements = line.split(",");
+                if (lineElements.length >= 7) {
+                    try {
+                        WayPoint currentWayPoint = new WayPoint(
+                                parseLatLon(lineElements));
+                        currentWayPoint.attr.put("ele", lineElements[2]);
+                        currentWayPoint.attr.put("time", lineElements[6]);
+                        currentWayPoint.setTime();
+                        currentTrackSeg.add(currentWayPoint);
+                        imported++;
+                    } catch (NumberFormatException e) {
+                        e.printStackTrace();
+                    }
+                }
+            }
+            failure = failure - imported;
+            if(imported > 0) {
+                GpxData data = new GpxData();
+                data.tracks.add(new SingleSegmentGpxTrack(new ImmutableGpxTrackSegment(currentTrackSeg), Collections.<String, Object>emptyMap()));
+                data.recalculateBounds();
+                data.storageFile = file;
+                GpxLayer gpxLayer = new GpxLayer(data, file.getName());
+                Main.main.addLayer(gpxLayer);
+                if (Main.pref.getBoolean("marker.makeautomarkers", true)) {
+                    MarkerLayer ml = new MarkerLayer(data, tr("Markers from {0}", file.getName()), file, gpxLayer);
+                    if (ml.data.size() > 0) {
+                        Main.main.addLayer(ml);
+                    }
+                }
+            }
+            showInfobox(imported,failure);
+        } finally {
+            if (rd != null) {
+                rd.close();
+            }
+        }
+    }
 
-	private double parseCoord(String s) {
-		return Double.parseDouble(s);
-	}
+    private double parseCoord(String s) {
+        return Double.parseDouble(s);
+    }
 
-	private LatLon parseLatLon(String[] lineElements) {
-		if (lineElements.length < 2)
-			return null;
-		return new LatLon(parseCoord(lineElements[0]),
-				parseCoord(lineElements[1]));
-	}
+    private LatLon parseLatLon(String[] lineElements) {
+        if (lineElements.length < 2)
+            return null;
+        return new LatLon(parseCoord(lineElements[0]),
+                parseCoord(lineElements[1]));
+    }
 
     private void showInfobox(int success,int failure) {
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/Tcx.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/Tcx.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/Tcx.java	(revision 23191)
@@ -119,6 +119,6 @@
 
     /** Convert a TrackpointT to a WayPoint.
-     * @param tp	TrackpointT to convert
-     * @return		tp converted to WayPoint, or null
+     * @param tp    TrackpointT to convert
+     * @return      tp converted to WayPoint, or null
      */
     private static WayPoint convertPoint(TrackpointT tp) {
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/AbstractSourceT.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/AbstractSourceT.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/AbstractSourceT.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
@@ -20,7 +20,7 @@
 /**
  * <p>Java class for AbstractSource_t complex type.
- * 
+ *
  * <p>The following schema fragment specifies the expected content contained within this class.
- * 
+ *
  * <pre>
  * &lt;complexType name="AbstractSource_t">
@@ -34,6 +34,6 @@
  * &lt;/complexType>
  * </pre>
- * 
- * 
+ *
+ *
  */
 @XmlAccessorType(XmlAccessType.FIELD)
@@ -53,9 +53,9 @@
     /**
      * Gets the value of the name property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link String }
-     *     
+     *
      */
     public String getName() {
@@ -65,9 +65,9 @@
     /**
      * Sets the value of the name property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link String }
-     *     
+     *
      */
     public void setName(String value) {
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/AbstractStepT.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/AbstractStepT.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/AbstractStepT.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
@@ -18,7 +18,7 @@
 /**
  * <p>Java class for AbstractStep_t complex type.
- * 
+ *
  * <p>The following schema fragment specifies the expected content contained within this class.
- * 
+ *
  * <pre>
  * &lt;complexType name="AbstractStep_t">
@@ -32,6 +32,6 @@
  * &lt;/complexType>
  * </pre>
- * 
- * 
+ *
+ *
  */
 @XmlAccessorType(XmlAccessType.FIELD)
@@ -50,5 +50,5 @@
     /**
      * Gets the value of the stepId property.
-     * 
+     *
      */
     public int getStepId() {
@@ -58,5 +58,5 @@
     /**
      * Sets the value of the stepId property.
-     * 
+     *
      */
     public void setStepId(int value) {
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/ActivityLapT.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/ActivityLapT.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/ActivityLapT.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
@@ -22,7 +22,7 @@
 /**
  * <p>Java class for ActivityLap_t complex type.
- * 
+ *
  * <p>The following schema fragment specifies the expected content contained within this class.
- * 
+ *
  * <pre>
  * &lt;complexType name="ActivityLap_t">
@@ -48,6 +48,6 @@
  * &lt;/complexType>
  * </pre>
- * 
- * 
+ *
+ *
  */
 @XmlAccessorType(XmlAccessType.FIELD)
@@ -99,5 +99,5 @@
     /**
      * Gets the value of the totalTimeSeconds property.
-     * 
+     *
      */
     public double getTotalTimeSeconds() {
@@ -107,5 +107,5 @@
     /**
      * Sets the value of the totalTimeSeconds property.
-     * 
+     *
      */
     public void setTotalTimeSeconds(double value) {
@@ -115,5 +115,5 @@
     /**
      * Gets the value of the distanceMeters property.
-     * 
+     *
      */
     public double getDistanceMeters() {
@@ -123,5 +123,5 @@
     /**
      * Sets the value of the distanceMeters property.
-     * 
+     *
      */
     public void setDistanceMeters(double value) {
@@ -131,9 +131,9 @@
     /**
      * Gets the value of the maximumSpeed property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link Double }
-     *     
+     *
      */
     public Double getMaximumSpeed() {
@@ -143,9 +143,9 @@
     /**
      * Sets the value of the maximumSpeed property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link Double }
-     *     
+     *
      */
     public void setMaximumSpeed(Double value) {
@@ -155,5 +155,5 @@
     /**
      * Gets the value of the calories property.
-     * 
+     *
      */
     public int getCalories() {
@@ -163,5 +163,5 @@
     /**
      * Sets the value of the calories property.
-     * 
+     *
      */
     public void setCalories(int value) {
@@ -171,9 +171,9 @@
     /**
      * Gets the value of the averageHeartRateBpm property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link HeartRateInBeatsPerMinuteT }
-     *     
+     *
      */
     public HeartRateInBeatsPerMinuteT getAverageHeartRateBpm() {
@@ -183,9 +183,9 @@
     /**
      * Sets the value of the averageHeartRateBpm property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link HeartRateInBeatsPerMinuteT }
-     *     
+     *
      */
     public void setAverageHeartRateBpm(HeartRateInBeatsPerMinuteT value) {
@@ -195,9 +195,9 @@
     /**
      * Gets the value of the maximumHeartRateBpm property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link HeartRateInBeatsPerMinuteT }
-     *     
+     *
      */
     public HeartRateInBeatsPerMinuteT getMaximumHeartRateBpm() {
@@ -207,9 +207,9 @@
     /**
      * Sets the value of the maximumHeartRateBpm property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link HeartRateInBeatsPerMinuteT }
-     *     
+     *
      */
     public void setMaximumHeartRateBpm(HeartRateInBeatsPerMinuteT value) {
@@ -219,9 +219,9 @@
     /**
      * Gets the value of the intensity property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link IntensityT }
-     *     
+     *
      */
     public IntensityT getIntensity() {
@@ -231,9 +231,9 @@
     /**
      * Sets the value of the intensity property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link IntensityT }
-     *     
+     *
      */
     public void setIntensity(IntensityT value) {
@@ -243,9 +243,9 @@
     /**
      * Gets the value of the cadence property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link Short }
-     *     
+     *
      */
     public Short getCadence() {
@@ -255,9 +255,9 @@
     /**
      * Sets the value of the cadence property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link Short }
-     *     
+     *
      */
     public void setCadence(Short value) {
@@ -267,9 +267,9 @@
     /**
      * Gets the value of the triggerMethod property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link TriggerMethodT }
-     *     
+     *
      */
     public TriggerMethodT getTriggerMethod() {
@@ -279,9 +279,9 @@
     /**
      * Sets the value of the triggerMethod property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link TriggerMethodT }
-     *     
+     *
      */
     public void setTriggerMethod(TriggerMethodT value) {
@@ -291,5 +291,5 @@
     /**
      * Gets the value of the track property.
-     * 
+     *
      * <p>
      * This accessor method returns a reference to the live list,
@@ -297,5 +297,5 @@
      * returned list will be present inside the JAXB object.
      * This is why there is not a <CODE>set</CODE> method for the track property.
-     * 
+     *
      * <p>
      * For example, to add a new item, do as follows:
@@ -303,11 +303,11 @@
      *    getTrack().add(newItem);
      * </pre>
-     * 
-     * 
+     *
+     *
      * <p>
      * Objects of the following type(s) are allowed in the list
      * {@link TrackT }
-     * 
-     * 
+     *
+     *
      */
     public List<TrackT> getTrack() {
@@ -320,9 +320,9 @@
     /**
      * Gets the value of the notes property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link String }
-     *     
+     *
      */
     public String getNotes() {
@@ -332,9 +332,9 @@
     /**
      * Sets the value of the notes property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link String }
-     *     
+     *
      */
     public void setNotes(String value) {
@@ -344,9 +344,9 @@
     /**
      * Gets the value of the extensions property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link ExtensionsT }
-     *     
+     *
      */
     public ExtensionsT getExtensions() {
@@ -356,9 +356,9 @@
     /**
      * Sets the value of the extensions property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link ExtensionsT }
-     *     
+     *
      */
     public void setExtensions(ExtensionsT value) {
@@ -368,9 +368,9 @@
     /**
      * Gets the value of the startTime property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link XMLGregorianCalendar }
-     *     
+     *
      */
     public XMLGregorianCalendar getStartTime() {
@@ -380,9 +380,9 @@
     /**
      * Sets the value of the startTime property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link XMLGregorianCalendar }
-     *     
+     *
      */
     public void setStartTime(XMLGregorianCalendar value) {
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/ActivityListT.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/ActivityListT.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/ActivityListT.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
@@ -19,7 +19,7 @@
 /**
  * <p>Java class for ActivityList_t complex type.
- * 
+ *
  * <p>The following schema fragment specifies the expected content contained within this class.
- * 
+ *
  * <pre>
  * &lt;complexType name="ActivityList_t">
@@ -34,6 +34,6 @@
  * &lt;/complexType>
  * </pre>
- * 
- * 
+ *
+ *
  */
 @XmlAccessorType(XmlAccessType.FIELD)
@@ -51,5 +51,5 @@
     /**
      * Gets the value of the activity property.
-     * 
+     *
      * <p>
      * This accessor method returns a reference to the live list,
@@ -57,5 +57,5 @@
      * returned list will be present inside the JAXB object.
      * This is why there is not a <CODE>set</CODE> method for the activity property.
-     * 
+     *
      * <p>
      * For example, to add a new item, do as follows:
@@ -63,11 +63,11 @@
      *    getActivity().add(newItem);
      * </pre>
-     * 
-     * 
+     *
+     *
      * <p>
      * Objects of the following type(s) are allowed in the list
      * {@link ActivityT }
-     * 
-     * 
+     *
+     *
      */
     public List<ActivityT> getActivity() {
@@ -80,5 +80,5 @@
     /**
      * Gets the value of the multiSportSession property.
-     * 
+     *
      * <p>
      * This accessor method returns a reference to the live list,
@@ -86,5 +86,5 @@
      * returned list will be present inside the JAXB object.
      * This is why there is not a <CODE>set</CODE> method for the multiSportSession property.
-     * 
+     *
      * <p>
      * For example, to add a new item, do as follows:
@@ -92,11 +92,11 @@
      *    getMultiSportSession().add(newItem);
      * </pre>
-     * 
-     * 
+     *
+     *
      * <p>
      * Objects of the following type(s) are allowed in the list
      * {@link MultiSportSessionT }
-     * 
-     * 
+     *
+     *
      */
     public List<MultiSportSessionT> getMultiSportSession() {
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/ActivityReferenceT.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/ActivityReferenceT.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/ActivityReferenceT.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
@@ -19,7 +19,7 @@
 /**
  * <p>Java class for ActivityReference_t complex type.
- * 
+ *
  * <p>The following schema fragment specifies the expected content contained within this class.
- * 
+ *
  * <pre>
  * &lt;complexType name="ActivityReference_t">
@@ -33,6 +33,6 @@
  * &lt;/complexType>
  * </pre>
- * 
- * 
+ *
+ *
  */
 @XmlAccessorType(XmlAccessType.FIELD)
@@ -48,9 +48,9 @@
     /**
      * Gets the value of the id property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link XMLGregorianCalendar }
-     *     
+     *
      */
     public XMLGregorianCalendar getId() {
@@ -60,9 +60,9 @@
     /**
      * Sets the value of the id property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link XMLGregorianCalendar }
-     *     
+     *
      */
     public void setId(XMLGregorianCalendar value) {
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/ActivityT.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/ActivityT.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/ActivityT.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
@@ -22,7 +22,7 @@
 /**
  * <p>Java class for Activity_t complex type.
- * 
+ *
  * <p>The following schema fragment specifies the expected content contained within this class.
- * 
+ *
  * <pre>
  * &lt;complexType name="Activity_t">
@@ -42,6 +42,6 @@
  * &lt;/complexType>
  * </pre>
- * 
- * 
+ *
+ *
  */
 @XmlAccessorType(XmlAccessType.FIELD)
@@ -74,9 +74,9 @@
     /**
      * Gets the value of the id property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link XMLGregorianCalendar }
-     *     
+     *
      */
     public XMLGregorianCalendar getId() {
@@ -86,9 +86,9 @@
     /**
      * Sets the value of the id property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link XMLGregorianCalendar }
-     *     
+     *
      */
     public void setId(XMLGregorianCalendar value) {
@@ -98,5 +98,5 @@
     /**
      * Gets the value of the lap property.
-     * 
+     *
      * <p>
      * This accessor method returns a reference to the live list,
@@ -104,5 +104,5 @@
      * returned list will be present inside the JAXB object.
      * This is why there is not a <CODE>set</CODE> method for the lap property.
-     * 
+     *
      * <p>
      * For example, to add a new item, do as follows:
@@ -110,11 +110,11 @@
      *    getLap().add(newItem);
      * </pre>
-     * 
-     * 
+     *
+     *
      * <p>
      * Objects of the following type(s) are allowed in the list
      * {@link ActivityLapT }
-     * 
-     * 
+     *
+     *
      */
     public List<ActivityLapT> getLap() {
@@ -127,9 +127,9 @@
     /**
      * Gets the value of the notes property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link String }
-     *     
+     *
      */
     public String getNotes() {
@@ -139,9 +139,9 @@
     /**
      * Sets the value of the notes property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link String }
-     *     
+     *
      */
     public void setNotes(String value) {
@@ -151,9 +151,9 @@
     /**
      * Gets the value of the training property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link TrainingT }
-     *     
+     *
      */
     public TrainingT getTraining() {
@@ -163,9 +163,9 @@
     /**
      * Sets the value of the training property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link TrainingT }
-     *     
+     *
      */
     public void setTraining(TrainingT value) {
@@ -175,9 +175,9 @@
     /**
      * Gets the value of the creator property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link AbstractSourceT }
-     *     
+     *
      */
     public AbstractSourceT getCreator() {
@@ -187,9 +187,9 @@
     /**
      * Sets the value of the creator property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link AbstractSourceT }
-     *     
+     *
      */
     public void setCreator(AbstractSourceT value) {
@@ -199,9 +199,9 @@
     /**
      * Gets the value of the extensions property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link ExtensionsT }
-     *     
+     *
      */
     public ExtensionsT getExtensions() {
@@ -211,9 +211,9 @@
     /**
      * Sets the value of the extensions property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link ExtensionsT }
-     *     
+     *
      */
     public void setExtensions(ExtensionsT value) {
@@ -223,9 +223,9 @@
     /**
      * Gets the value of the sport property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link SportT }
-     *     
+     *
      */
     public SportT getSport() {
@@ -235,9 +235,9 @@
     /**
      * Sets the value of the sport property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link SportT }
-     *     
+     *
      */
     public void setSport(SportT value) {
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/ApplicationT.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/ApplicationT.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/ApplicationT.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
@@ -19,9 +19,9 @@
 /**
  * Identifies a PC software application.
- * 
+ *
  * <p>Java class for Application_t complex type.
- * 
+ *
  * <p>The following schema fragment specifies the expected content contained within this class.
- * 
+ *
  * <pre>
  * &lt;complexType name="Application_t">
@@ -37,6 +37,6 @@
  * &lt;/complexType>
  * </pre>
- * 
- * 
+ *
+ *
  */
 @XmlAccessorType(XmlAccessType.FIELD)
@@ -61,9 +61,9 @@
     /**
      * Gets the value of the build property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link BuildT }
-     *     
+     *
      */
     public BuildT getBuild() {
@@ -73,9 +73,9 @@
     /**
      * Sets the value of the build property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link BuildT }
-     *     
+     *
      */
     public void setBuild(BuildT value) {
@@ -85,9 +85,9 @@
     /**
      * Gets the value of the langID property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link String }
-     *     
+     *
      */
     public String getLangID() {
@@ -97,9 +97,9 @@
     /**
      * Sets the value of the langID property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link String }
-     *     
+     *
      */
     public void setLangID(String value) {
@@ -109,9 +109,9 @@
     /**
      * Gets the value of the partNumber property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link String }
-     *     
+     *
      */
     public String getPartNumber() {
@@ -121,9 +121,9 @@
     /**
      * Sets the value of the partNumber property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link String }
-     *     
+     *
      */
     public void setPartNumber(String value) {
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/BuildT.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/BuildT.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/BuildT.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
@@ -19,7 +19,7 @@
 /**
  * <p>Java class for Build_t complex type.
- * 
+ *
  * <p>The following schema fragment specifies the expected content contained within this class.
- * 
+ *
  * <pre>
  * &lt;complexType name="Build_t">
@@ -36,6 +36,6 @@
  * &lt;/complexType>
  * </pre>
- * 
- * 
+ *
+ *
  */
 @XmlAccessorType(XmlAccessType.FIELD)
@@ -61,9 +61,9 @@
     /**
      * Gets the value of the version property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link VersionT }
-     *     
+     *
      */
     public VersionT getVersion() {
@@ -73,9 +73,9 @@
     /**
      * Sets the value of the version property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link VersionT }
-     *     
+     *
      */
     public void setVersion(VersionT value) {
@@ -85,9 +85,9 @@
     /**
      * Gets the value of the type property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link BuildTypeT }
-     *     
+     *
      */
     public BuildTypeT getType() {
@@ -97,9 +97,9 @@
     /**
      * Sets the value of the type property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link BuildTypeT }
-     *     
+     *
      */
     public void setType(BuildTypeT value) {
@@ -109,9 +109,9 @@
     /**
      * Gets the value of the time property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link String }
-     *     
+     *
      */
     public String getTime() {
@@ -121,9 +121,9 @@
     /**
      * Sets the value of the time property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link String }
-     *     
+     *
      */
     public void setTime(String value) {
@@ -133,9 +133,9 @@
     /**
      * Gets the value of the builder property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link String }
-     *     
+     *
      */
     public String getBuilder() {
@@ -145,9 +145,9 @@
     /**
      * Sets the value of the builder property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link String }
-     *     
+     *
      */
     public void setBuilder(String value) {
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/BuildTypeT.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/BuildTypeT.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/BuildTypeT.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
@@ -16,5 +16,5 @@
 /**
  * <p>Java class for BuildType_t.
- * 
+ *
  * <p>The following schema fragment specifies the expected content contained within this class.
  * <p>
@@ -29,5 +29,5 @@
  * &lt;/simpleType>
  * </pre>
- * 
+ *
  */
 @XmlType(name = "BuildType_t")
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/CadenceT.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/CadenceT.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/CadenceT.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
@@ -17,7 +17,7 @@
 /**
  * <p>Java class for Cadence_t complex type.
- * 
+ *
  * <p>The following schema fragment specifies the expected content contained within this class.
- * 
+ *
  * <pre>
  * &lt;complexType name="Cadence_t">
@@ -32,6 +32,6 @@
  * &lt;/complexType>
  * </pre>
- * 
- * 
+ *
+ *
  */
 @XmlAccessorType(XmlAccessType.FIELD)
@@ -51,5 +51,5 @@
     /**
      * Gets the value of the low property.
-     * 
+     *
      */
     public double getLow() {
@@ -59,5 +59,5 @@
     /**
      * Sets the value of the low property.
-     * 
+     *
      */
     public void setLow(double value) {
@@ -67,5 +67,5 @@
     /**
      * Gets the value of the high property.
-     * 
+     *
      */
     public double getHigh() {
@@ -75,5 +75,5 @@
     /**
      * Sets the value of the high property.
-     * 
+     *
      */
     public void setHigh(double value) {
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/CaloriesBurnedT.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/CaloriesBurnedT.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/CaloriesBurnedT.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
@@ -18,7 +18,7 @@
 /**
  * <p>Java class for CaloriesBurned_t complex type.
- * 
+ *
  * <p>The following schema fragment specifies the expected content contained within this class.
- * 
+ *
  * <pre>
  * &lt;complexType name="CaloriesBurned_t">
@@ -32,6 +32,6 @@
  * &lt;/complexType>
  * </pre>
- * 
- * 
+ *
+ *
  */
 @XmlAccessorType(XmlAccessType.FIELD)
@@ -49,5 +49,5 @@
     /**
      * Gets the value of the calories property.
-     * 
+     *
      */
     public int getCalories() {
@@ -57,5 +57,5 @@
     /**
      * Sets the value of the calories property.
-     * 
+     *
      */
     public void setCalories(int value) {
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/CourseFolderT.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/CourseFolderT.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/CourseFolderT.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
@@ -20,7 +20,7 @@
 /**
  * <p>Java class for CourseFolder_t complex type.
- * 
+ *
  * <p>The following schema fragment specifies the expected content contained within this class.
- * 
+ *
  * <pre>
  * &lt;complexType name="CourseFolder_t">
@@ -38,6 +38,6 @@
  * &lt;/complexType>
  * </pre>
- * 
- * 
+ *
+ *
  */
 @XmlAccessorType(XmlAccessType.FIELD)
@@ -63,5 +63,5 @@
     /**
      * Gets the value of the folder property.
-     * 
+     *
      * <p>
      * This accessor method returns a reference to the live list,
@@ -69,5 +69,5 @@
      * returned list will be present inside the JAXB object.
      * This is why there is not a <CODE>set</CODE> method for the folder property.
-     * 
+     *
      * <p>
      * For example, to add a new item, do as follows:
@@ -75,11 +75,11 @@
      *    getFolder().add(newItem);
      * </pre>
-     * 
-     * 
+     *
+     *
      * <p>
      * Objects of the following type(s) are allowed in the list
      * {@link CourseFolderT }
-     * 
-     * 
+     *
+     *
      */
     public List<CourseFolderT> getFolder() {
@@ -92,5 +92,5 @@
     /**
      * Gets the value of the courseNameRef property.
-     * 
+     *
      * <p>
      * This accessor method returns a reference to the live list,
@@ -98,5 +98,5 @@
      * returned list will be present inside the JAXB object.
      * This is why there is not a <CODE>set</CODE> method for the courseNameRef property.
-     * 
+     *
      * <p>
      * For example, to add a new item, do as follows:
@@ -104,11 +104,11 @@
      *    getCourseNameRef().add(newItem);
      * </pre>
-     * 
-     * 
+     *
+     *
      * <p>
      * Objects of the following type(s) are allowed in the list
      * {@link NameKeyReferenceT }
-     * 
-     * 
+     *
+     *
      */
     public List<NameKeyReferenceT> getCourseNameRef() {
@@ -121,9 +121,9 @@
     /**
      * Gets the value of the notes property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link String }
-     *     
+     *
      */
     public String getNotes() {
@@ -133,9 +133,9 @@
     /**
      * Sets the value of the notes property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link String }
-     *     
+     *
      */
     public void setNotes(String value) {
@@ -145,9 +145,9 @@
     /**
      * Gets the value of the extensions property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link ExtensionsT }
-     *     
+     *
      */
     public ExtensionsT getExtensions() {
@@ -157,9 +157,9 @@
     /**
      * Sets the value of the extensions property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link ExtensionsT }
-     *     
+     *
      */
     public void setExtensions(ExtensionsT value) {
@@ -169,9 +169,9 @@
     /**
      * Gets the value of the name property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link String }
-     *     
+     *
      */
     public String getName() {
@@ -181,9 +181,9 @@
     /**
      * Sets the value of the name property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link String }
-     *     
+     *
      */
     public void setName(String value) {
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/CourseLapT.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/CourseLapT.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/CourseLapT.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
@@ -17,7 +17,7 @@
 /**
  * <p>Java class for CourseLap_t complex type.
- * 
+ *
  * <p>The following schema fragment specifies the expected content contained within this class.
- * 
+ *
  * <pre>
  * &lt;complexType name="CourseLap_t">
@@ -41,6 +41,6 @@
  * &lt;/complexType>
  * </pre>
- * 
- * 
+ *
+ *
  */
 @XmlAccessorType(XmlAccessType.FIELD)
@@ -85,5 +85,5 @@
     /**
      * Gets the value of the totalTimeSeconds property.
-     * 
+     *
      */
     public double getTotalTimeSeconds() {
@@ -93,5 +93,5 @@
     /**
      * Sets the value of the totalTimeSeconds property.
-     * 
+     *
      */
     public void setTotalTimeSeconds(double value) {
@@ -101,5 +101,5 @@
     /**
      * Gets the value of the distanceMeters property.
-     * 
+     *
      */
     public double getDistanceMeters() {
@@ -109,5 +109,5 @@
     /**
      * Sets the value of the distanceMeters property.
-     * 
+     *
      */
     public void setDistanceMeters(double value) {
@@ -117,9 +117,9 @@
     /**
      * Gets the value of the beginPosition property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link PositionT }
-     *     
+     *
      */
     public PositionT getBeginPosition() {
@@ -129,9 +129,9 @@
     /**
      * Sets the value of the beginPosition property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link PositionT }
-     *     
+     *
      */
     public void setBeginPosition(PositionT value) {
@@ -141,9 +141,9 @@
     /**
      * Gets the value of the beginAltitudeMeters property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link Double }
-     *     
+     *
      */
     public Double getBeginAltitudeMeters() {
@@ -153,9 +153,9 @@
     /**
      * Sets the value of the beginAltitudeMeters property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link Double }
-     *     
+     *
      */
     public void setBeginAltitudeMeters(Double value) {
@@ -165,9 +165,9 @@
     /**
      * Gets the value of the endPosition property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link PositionT }
-     *     
+     *
      */
     public PositionT getEndPosition() {
@@ -177,9 +177,9 @@
     /**
      * Sets the value of the endPosition property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link PositionT }
-     *     
+     *
      */
     public void setEndPosition(PositionT value) {
@@ -189,9 +189,9 @@
     /**
      * Gets the value of the endAltitudeMeters property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link Double }
-     *     
+     *
      */
     public Double getEndAltitudeMeters() {
@@ -201,9 +201,9 @@
     /**
      * Sets the value of the endAltitudeMeters property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link Double }
-     *     
+     *
      */
     public void setEndAltitudeMeters(Double value) {
@@ -213,9 +213,9 @@
     /**
      * Gets the value of the averageHeartRateBpm property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link HeartRateInBeatsPerMinuteT }
-     *     
+     *
      */
     public HeartRateInBeatsPerMinuteT getAverageHeartRateBpm() {
@@ -225,9 +225,9 @@
     /**
      * Sets the value of the averageHeartRateBpm property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link HeartRateInBeatsPerMinuteT }
-     *     
+     *
      */
     public void setAverageHeartRateBpm(HeartRateInBeatsPerMinuteT value) {
@@ -237,9 +237,9 @@
     /**
      * Gets the value of the maximumHeartRateBpm property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link HeartRateInBeatsPerMinuteT }
-     *     
+     *
      */
     public HeartRateInBeatsPerMinuteT getMaximumHeartRateBpm() {
@@ -249,9 +249,9 @@
     /**
      * Sets the value of the maximumHeartRateBpm property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link HeartRateInBeatsPerMinuteT }
-     *     
+     *
      */
     public void setMaximumHeartRateBpm(HeartRateInBeatsPerMinuteT value) {
@@ -261,9 +261,9 @@
     /**
      * Gets the value of the intensity property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link IntensityT }
-     *     
+     *
      */
     public IntensityT getIntensity() {
@@ -273,9 +273,9 @@
     /**
      * Sets the value of the intensity property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link IntensityT }
-     *     
+     *
      */
     public void setIntensity(IntensityT value) {
@@ -285,9 +285,9 @@
     /**
      * Gets the value of the cadence property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link Short }
-     *     
+     *
      */
     public Short getCadence() {
@@ -297,9 +297,9 @@
     /**
      * Sets the value of the cadence property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link Short }
-     *     
+     *
      */
     public void setCadence(Short value) {
@@ -309,9 +309,9 @@
     /**
      * Gets the value of the extensions property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link ExtensionsT }
-     *     
+     *
      */
     public ExtensionsT getExtensions() {
@@ -321,9 +321,9 @@
     /**
      * Sets the value of the extensions property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link ExtensionsT }
-     *     
+     *
      */
     public void setExtensions(ExtensionsT value) {
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/CourseListT.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/CourseListT.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/CourseListT.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
@@ -19,7 +19,7 @@
 /**
  * <p>Java class for CourseList_t complex type.
- * 
+ *
  * <p>The following schema fragment specifies the expected content contained within this class.
- * 
+ *
  * <pre>
  * &lt;complexType name="CourseList_t">
@@ -33,6 +33,6 @@
  * &lt;/complexType>
  * </pre>
- * 
- * 
+ *
+ *
  */
 @XmlAccessorType(XmlAccessType.FIELD)
@@ -47,5 +47,5 @@
     /**
      * Gets the value of the course property.
-     * 
+     *
      * <p>
      * This accessor method returns a reference to the live list,
@@ -53,5 +53,5 @@
      * returned list will be present inside the JAXB object.
      * This is why there is not a <CODE>set</CODE> method for the course property.
-     * 
+     *
      * <p>
      * For example, to add a new item, do as follows:
@@ -59,11 +59,11 @@
      *    getCourse().add(newItem);
      * </pre>
-     * 
-     * 
+     *
+     *
      * <p>
      * Objects of the following type(s) are allowed in the list
      * {@link CourseT }
-     * 
-     * 
+     *
+     *
      */
     public List<CourseT> getCourse() {
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/CoursePointT.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/CoursePointT.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/CoursePointT.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
@@ -21,7 +21,7 @@
 /**
  * <p>Java class for CoursePoint_t complex type.
- * 
+ *
  * <p>The following schema fragment specifies the expected content contained within this class.
- * 
+ *
  * <pre>
  * &lt;complexType name="CoursePoint_t">
@@ -41,6 +41,6 @@
  * &lt;/complexType>
  * </pre>
- * 
- * 
+ *
+ *
  */
 @XmlAccessorType(XmlAccessType.FIELD)
@@ -76,9 +76,9 @@
     /**
      * Gets the value of the name property.
-     * 
-     * @return
-     *     possible object is
-     *     {@link String }
-     *     
+     *
+     * @return
+     *     possible object is
+     *     {@link String }
+     *
      */
     public String getName() {
@@ -88,9 +88,9 @@
     /**
      * Sets the value of the name property.
-     * 
-     * @param value
-     *     allowed object is
-     *     {@link String }
-     *     
+     *
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *
      */
     public void setName(String value) {
@@ -100,9 +100,9 @@
     /**
      * Gets the value of the time property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link XMLGregorianCalendar }
-     *     
+     *
      */
     public XMLGregorianCalendar getTime() {
@@ -112,9 +112,9 @@
     /**
      * Sets the value of the time property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link XMLGregorianCalendar }
-     *     
+     *
      */
     public void setTime(XMLGregorianCalendar value) {
@@ -124,9 +124,9 @@
     /**
      * Gets the value of the position property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link PositionT }
-     *     
+     *
      */
     public PositionT getPosition() {
@@ -136,9 +136,9 @@
     /**
      * Sets the value of the position property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link PositionT }
-     *     
+     *
      */
     public void setPosition(PositionT value) {
@@ -148,9 +148,9 @@
     /**
      * Gets the value of the altitudeMeters property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link Double }
-     *     
+     *
      */
     public Double getAltitudeMeters() {
@@ -160,9 +160,9 @@
     /**
      * Sets the value of the altitudeMeters property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link Double }
-     *     
+     *
      */
     public void setAltitudeMeters(Double value) {
@@ -172,9 +172,9 @@
     /**
      * Gets the value of the pointType property.
-     * 
-     * @return
-     *     possible object is
-     *     {@link String }
-     *     
+     *
+     * @return
+     *     possible object is
+     *     {@link String }
+     *
      */
     public String getPointType() {
@@ -184,9 +184,9 @@
     /**
      * Sets the value of the pointType property.
-     * 
-     * @param value
-     *     allowed object is
-     *     {@link String }
-     *     
+     *
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *
      */
     public void setPointType(String value) {
@@ -196,9 +196,9 @@
     /**
      * Gets the value of the notes property.
-     * 
-     * @return
-     *     possible object is
-     *     {@link String }
-     *     
+     *
+     * @return
+     *     possible object is
+     *     {@link String }
+     *
      */
     public String getNotes() {
@@ -208,9 +208,9 @@
     /**
      * Sets the value of the notes property.
-     * 
-     * @param value
-     *     allowed object is
-     *     {@link String }
-     *     
+     *
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *
      */
     public void setNotes(String value) {
@@ -220,9 +220,9 @@
     /**
      * Gets the value of the extensions property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link ExtensionsT }
-     *     
+     *
      */
     public ExtensionsT getExtensions() {
@@ -232,9 +232,9 @@
     /**
      * Sets the value of the extensions property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link ExtensionsT }
-     *     
+     *
      */
     public void setExtensions(ExtensionsT value) {
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/CourseT.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/CourseT.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/CourseT.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
@@ -21,7 +21,7 @@
 /**
  * <p>Java class for Course_t complex type.
- * 
+ *
  * <p>The following schema fragment specifies the expected content contained within this class.
- * 
+ *
  * <pre>
  * &lt;complexType name="Course_t">
@@ -41,6 +41,6 @@
  * &lt;/complexType>
  * </pre>
- * 
- * 
+ *
+ *
  */
 @XmlAccessorType(XmlAccessType.FIELD)
@@ -74,9 +74,9 @@
     /**
      * Gets the value of the name property.
-     * 
-     * @return
-     *     possible object is
-     *     {@link String }
-     *     
+     *
+     * @return
+     *     possible object is
+     *     {@link String }
+     *
      */
     public String getName() {
@@ -86,9 +86,9 @@
     /**
      * Sets the value of the name property.
-     * 
-     * @param value
-     *     allowed object is
-     *     {@link String }
-     *     
+     *
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *
      */
     public void setName(String value) {
@@ -98,5 +98,5 @@
     /**
      * Gets the value of the lap property.
-     * 
+     *
      * <p>
      * This accessor method returns a reference to the live list,
@@ -104,5 +104,5 @@
      * returned list will be present inside the JAXB object.
      * This is why there is not a <CODE>set</CODE> method for the lap property.
-     * 
+     *
      * <p>
      * For example, to add a new item, do as follows:
@@ -110,11 +110,11 @@
      *    getLap().add(newItem);
      * </pre>
-     * 
-     * 
+     *
+     *
      * <p>
      * Objects of the following type(s) are allowed in the list
      * {@link CourseLapT }
-     * 
-     * 
+     *
+     *
      */
     public List<CourseLapT> getLap() {
@@ -127,5 +127,5 @@
     /**
      * Gets the value of the track property.
-     * 
+     *
      * <p>
      * This accessor method returns a reference to the live list,
@@ -133,5 +133,5 @@
      * returned list will be present inside the JAXB object.
      * This is why there is not a <CODE>set</CODE> method for the track property.
-     * 
+     *
      * <p>
      * For example, to add a new item, do as follows:
@@ -139,11 +139,11 @@
      *    getTrack().add(newItem);
      * </pre>
-     * 
-     * 
+     *
+     *
      * <p>
      * Objects of the following type(s) are allowed in the list
      * {@link TrackT }
-     * 
-     * 
+     *
+     *
      */
     public List<TrackT> getTrack() {
@@ -156,9 +156,9 @@
     /**
      * Gets the value of the notes property.
-     * 
-     * @return
-     *     possible object is
-     *     {@link String }
-     *     
+     *
+     * @return
+     *     possible object is
+     *     {@link String }
+     *
      */
     public String getNotes() {
@@ -168,9 +168,9 @@
     /**
      * Sets the value of the notes property.
-     * 
-     * @param value
-     *     allowed object is
-     *     {@link String }
-     *     
+     *
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *
      */
     public void setNotes(String value) {
@@ -180,5 +180,5 @@
     /**
      * Gets the value of the coursePoint property.
-     * 
+     *
      * <p>
      * This accessor method returns a reference to the live list,
@@ -186,5 +186,5 @@
      * returned list will be present inside the JAXB object.
      * This is why there is not a <CODE>set</CODE> method for the coursePoint property.
-     * 
+     *
      * <p>
      * For example, to add a new item, do as follows:
@@ -192,11 +192,11 @@
      *    getCoursePoint().add(newItem);
      * </pre>
-     * 
-     * 
+     *
+     *
      * <p>
      * Objects of the following type(s) are allowed in the list
      * {@link CoursePointT }
-     * 
-     * 
+     *
+     *
      */
     public List<CoursePointT> getCoursePoint() {
@@ -209,9 +209,9 @@
     /**
      * Gets the value of the creator property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link AbstractSourceT }
-     *     
+     *
      */
     public AbstractSourceT getCreator() {
@@ -221,9 +221,9 @@
     /**
      * Sets the value of the creator property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link AbstractSourceT }
-     *     
+     *
      */
     public void setCreator(AbstractSourceT value) {
@@ -233,9 +233,9 @@
     /**
      * Gets the value of the extensions property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link ExtensionsT }
-     *     
+     *
      */
     public ExtensionsT getExtensions() {
@@ -245,9 +245,9 @@
     /**
      * Sets the value of the extensions property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link ExtensionsT }
-     *     
+     *
      */
     public void setExtensions(ExtensionsT value) {
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/CoursesT.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/CoursesT.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/CoursesT.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
@@ -17,7 +17,7 @@
 /**
  * <p>Java class for Courses_t complex type.
- * 
+ *
  * <p>The following schema fragment specifies the expected content contained within this class.
- * 
+ *
  * <pre>
  * &lt;complexType name="Courses_t">
@@ -32,6 +32,6 @@
  * &lt;/complexType>
  * </pre>
- * 
- * 
+ *
+ *
  */
 @XmlAccessorType(XmlAccessType.FIELD)
@@ -49,9 +49,9 @@
     /**
      * Gets the value of the courseFolder property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link CourseFolderT }
-     *     
+     *
      */
     public CourseFolderT getCourseFolder() {
@@ -61,9 +61,9 @@
     /**
      * Sets the value of the courseFolder property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link CourseFolderT }
-     *     
+     *
      */
     public void setCourseFolder(CourseFolderT value) {
@@ -73,9 +73,9 @@
     /**
      * Gets the value of the extensions property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link ExtensionsT }
-     *     
+     *
      */
     public ExtensionsT getExtensions() {
@@ -85,9 +85,9 @@
     /**
      * Sets the value of the extensions property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link ExtensionsT }
-     *     
+     *
      */
     public void setExtensions(ExtensionsT value) {
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/CustomHeartRateZoneT.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/CustomHeartRateZoneT.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/CustomHeartRateZoneT.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
@@ -17,7 +17,7 @@
 /**
  * <p>Java class for CustomHeartRateZone_t complex type.
- * 
+ *
  * <p>The following schema fragment specifies the expected content contained within this class.
- * 
+ *
  * <pre>
  * &lt;complexType name="CustomHeartRateZone_t">
@@ -32,6 +32,6 @@
  * &lt;/complexType>
  * </pre>
- * 
- * 
+ *
+ *
  */
 @XmlAccessorType(XmlAccessType.FIELD)
@@ -51,9 +51,9 @@
     /**
      * Gets the value of the low property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link HeartRateValueT }
-     *     
+     *
      */
     public HeartRateValueT getLow() {
@@ -63,9 +63,9 @@
     /**
      * Sets the value of the low property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link HeartRateValueT }
-     *     
+     *
      */
     public void setLow(HeartRateValueT value) {
@@ -75,9 +75,9 @@
     /**
      * Gets the value of the high property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link HeartRateValueT }
-     *     
+     *
      */
     public HeartRateValueT getHigh() {
@@ -87,9 +87,9 @@
     /**
      * Sets the value of the high property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link HeartRateValueT }
-     *     
+     *
      */
     public void setHigh(HeartRateValueT value) {
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/CustomSpeedZoneT.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/CustomSpeedZoneT.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/CustomSpeedZoneT.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
@@ -17,7 +17,7 @@
 /**
  * <p>Java class for CustomSpeedZone_t complex type.
- * 
+ *
  * <p>The following schema fragment specifies the expected content contained within this class.
- * 
+ *
  * <pre>
  * &lt;complexType name="CustomSpeedZone_t">
@@ -33,6 +33,6 @@
  * &lt;/complexType>
  * </pre>
- * 
- * 
+ *
+ *
  */
 @XmlAccessorType(XmlAccessType.FIELD)
@@ -55,9 +55,9 @@
     /**
      * Gets the value of the viewAs property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link SpeedTypeT }
-     *     
+     *
      */
     public SpeedTypeT getViewAs() {
@@ -67,9 +67,9 @@
     /**
      * Sets the value of the viewAs property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link SpeedTypeT }
-     *     
+     *
      */
     public void setViewAs(SpeedTypeT value) {
@@ -79,5 +79,5 @@
     /**
      * Gets the value of the lowInMetersPerSecond property.
-     * 
+     *
      */
     public double getLowInMetersPerSecond() {
@@ -87,5 +87,5 @@
     /**
      * Sets the value of the lowInMetersPerSecond property.
-     * 
+     *
      */
     public void setLowInMetersPerSecond(double value) {
@@ -95,5 +95,5 @@
     /**
      * Gets the value of the highInMetersPerSecond property.
-     * 
+     *
      */
     public double getHighInMetersPerSecond() {
@@ -103,5 +103,5 @@
     /**
      * Sets the value of the highInMetersPerSecond property.
-     * 
+     *
      */
     public void setHighInMetersPerSecond(double value) {
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/DeviceT.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/DeviceT.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/DeviceT.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
@@ -20,9 +20,9 @@
  *                                used to identify the type of device capable of handling
  *                                the data for loading.
- * 
+ *
  * <p>Java class for Device_t complex type.
- * 
+ *
  * <p>The following schema fragment specifies the expected content contained within this class.
- * 
+ *
  * <pre>
  * &lt;complexType name="Device_t">
@@ -38,6 +38,6 @@
  * &lt;/complexType>
  * </pre>
- * 
- * 
+ *
+ *
  */
 @XmlAccessorType(XmlAccessType.FIELD)
@@ -62,5 +62,5 @@
     /**
      * Gets the value of the unitId property.
-     * 
+     *
      */
     public long getUnitId() {
@@ -70,5 +70,5 @@
     /**
      * Sets the value of the unitId property.
-     * 
+     *
      */
     public void setUnitId(long value) {
@@ -78,5 +78,5 @@
     /**
      * Gets the value of the productID property.
-     * 
+     *
      */
     public int getProductID() {
@@ -86,5 +86,5 @@
     /**
      * Sets the value of the productID property.
-     * 
+     *
      */
     public void setProductID(int value) {
@@ -94,9 +94,9 @@
     /**
      * Gets the value of the version property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link VersionT }
-     *     
+     *
      */
     public VersionT getVersion() {
@@ -106,9 +106,9 @@
     /**
      * Sets the value of the version property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link VersionT }
-     *     
+     *
      */
     public void setVersion(VersionT value) {
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/DistanceT.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/DistanceT.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/DistanceT.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
@@ -18,7 +18,7 @@
 /**
  * <p>Java class for Distance_t complex type.
- * 
+ *
  * <p>The following schema fragment specifies the expected content contained within this class.
- * 
+ *
  * <pre>
  * &lt;complexType name="Distance_t">
@@ -32,6 +32,6 @@
  * &lt;/complexType>
  * </pre>
- * 
- * 
+ *
+ *
  */
 @XmlAccessorType(XmlAccessType.FIELD)
@@ -49,5 +49,5 @@
     /**
      * Gets the value of the meters property.
-     * 
+     *
      */
     public int getMeters() {
@@ -57,5 +57,5 @@
     /**
      * Sets the value of the meters property.
-     * 
+     *
      */
     public void setMeters(int value) {
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/DurationT.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/DurationT.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/DurationT.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
@@ -17,7 +17,7 @@
 /**
  * <p>Java class for Duration_t complex type.
- * 
+ *
  * <p>The following schema fragment specifies the expected content contained within this class.
- * 
+ *
  * <pre>
  * &lt;complexType name="Duration_t">
@@ -28,6 +28,6 @@
  * &lt;/complexType>
  * </pre>
- * 
- * 
+ *
+ *
  */
 @XmlAccessorType(XmlAccessType.FIELD)
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/ExtensionsT.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/ExtensionsT.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/ExtensionsT.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
@@ -20,7 +20,7 @@
 /**
  * <p>Java class for Extensions_t complex type.
- * 
+ *
  * <p>The following schema fragment specifies the expected content contained within this class.
- * 
+ *
  * <pre>
  * &lt;complexType name="Extensions_t">
@@ -34,6 +34,6 @@
  * &lt;/complexType>
  * </pre>
- * 
- * 
+ *
+ *
  */
 @XmlAccessorType(XmlAccessType.FIELD)
@@ -48,5 +48,5 @@
     /**
      * Gets the value of the any property.
-     * 
+     *
      * <p>
      * This accessor method returns a reference to the live list,
@@ -54,5 +54,5 @@
      * returned list will be present inside the JAXB object.
      * This is why there is not a <CODE>set</CODE> method for the any property.
-     * 
+     *
      * <p>
      * For example, to add a new item, do as follows:
@@ -60,12 +60,12 @@
      *    getAny().add(newItem);
      * </pre>
-     * 
-     * 
+     *
+     *
      * <p>
      * Objects of the following type(s) are allowed in the list
      * {@link Object }
      * {@link Element }
-     * 
-     * 
+     *
+     *
      */
     public List<Object> getAny() {
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/FirstSportT.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/FirstSportT.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/FirstSportT.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
@@ -17,7 +17,7 @@
 /**
  * <p>Java class for FirstSport_t complex type.
- * 
+ *
  * <p>The following schema fragment specifies the expected content contained within this class.
- * 
+ *
  * <pre>
  * &lt;complexType name="FirstSport_t">
@@ -31,6 +31,6 @@
  * &lt;/complexType>
  * </pre>
- * 
- * 
+ *
+ *
  */
 @XmlAccessorType(XmlAccessType.FIELD)
@@ -45,9 +45,9 @@
     /**
      * Gets the value of the activity property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link ActivityT }
-     *     
+     *
      */
     public ActivityT getActivity() {
@@ -57,9 +57,9 @@
     /**
      * Sets the value of the activity property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link ActivityT }
-     *     
+     *
      */
     public void setActivity(ActivityT value) {
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/FoldersT.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/FoldersT.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/FoldersT.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
@@ -17,7 +17,7 @@
 /**
  * <p>Java class for Folders_t complex type.
- * 
+ *
  * <p>The following schema fragment specifies the expected content contained within this class.
- * 
+ *
  * <pre>
  * &lt;complexType name="Folders_t">
@@ -33,6 +33,6 @@
  * &lt;/complexType>
  * </pre>
- * 
- * 
+ *
+ *
  */
 @XmlAccessorType(XmlAccessType.FIELD)
@@ -53,9 +53,9 @@
     /**
      * Gets the value of the history property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link HistoryT }
-     *     
+     *
      */
     public HistoryT getHistory() {
@@ -65,9 +65,9 @@
     /**
      * Sets the value of the history property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link HistoryT }
-     *     
+     *
      */
     public void setHistory(HistoryT value) {
@@ -77,9 +77,9 @@
     /**
      * Gets the value of the workouts property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link WorkoutsT }
-     *     
+     *
      */
     public WorkoutsT getWorkouts() {
@@ -89,9 +89,9 @@
     /**
      * Sets the value of the workouts property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link WorkoutsT }
-     *     
+     *
      */
     public void setWorkouts(WorkoutsT value) {
@@ -101,9 +101,9 @@
     /**
      * Gets the value of the courses property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link CoursesT }
-     *     
+     *
      */
     public CoursesT getCourses() {
@@ -113,9 +113,9 @@
     /**
      * Sets the value of the courses property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link CoursesT }
-     *     
+     *
      */
     public void setCourses(CoursesT value) {
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/GenderT.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/GenderT.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/GenderT.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
@@ -16,5 +16,5 @@
 /**
  * <p>Java class for Gender_t.
- * 
+ *
  * <p>The following schema fragment specifies the expected content contained within this class.
  * <p>
@@ -27,5 +27,5 @@
  * &lt;/simpleType>
  * </pre>
- * 
+ *
  */
 @XmlType(name = "Gender_t")
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/HeartRateAboveT.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/HeartRateAboveT.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/HeartRateAboveT.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
@@ -17,7 +17,7 @@
 /**
  * <p>Java class for HeartRateAbove_t complex type.
- * 
+ *
  * <p>The following schema fragment specifies the expected content contained within this class.
- * 
+ *
  * <pre>
  * &lt;complexType name="HeartRateAbove_t">
@@ -31,6 +31,6 @@
  * &lt;/complexType>
  * </pre>
- * 
- * 
+ *
+ *
  */
 @XmlAccessorType(XmlAccessType.FIELD)
@@ -47,9 +47,9 @@
     /**
      * Gets the value of the heartRate property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link HeartRateValueT }
-     *     
+     *
      */
     public HeartRateValueT getHeartRate() {
@@ -59,9 +59,9 @@
     /**
      * Sets the value of the heartRate property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link HeartRateValueT }
-     *     
+     *
      */
     public void setHeartRate(HeartRateValueT value) {
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/HeartRateAsPercentOfMaxT.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/HeartRateAsPercentOfMaxT.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/HeartRateAsPercentOfMaxT.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
@@ -17,7 +17,7 @@
 /**
  * <p>Java class for HeartRateAsPercentOfMax_t complex type.
- * 
+ *
  * <p>The following schema fragment specifies the expected content contained within this class.
- * 
+ *
  * <pre>
  * &lt;complexType name="HeartRateAsPercentOfMax_t">
@@ -31,6 +31,6 @@
  * &lt;/complexType>
  * </pre>
- * 
- * 
+ *
+ *
  */
 @XmlAccessorType(XmlAccessType.FIELD)
@@ -47,5 +47,5 @@
     /**
      * Gets the value of the value property.
-     * 
+     *
      */
     public short getValue() {
@@ -55,5 +55,5 @@
     /**
      * Sets the value of the value property.
-     * 
+     *
      */
     public void setValue(short value) {
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/HeartRateBelowT.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/HeartRateBelowT.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/HeartRateBelowT.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
@@ -17,7 +17,7 @@
 /**
  * <p>Java class for HeartRateBelow_t complex type.
- * 
+ *
  * <p>The following schema fragment specifies the expected content contained within this class.
- * 
+ *
  * <pre>
  * &lt;complexType name="HeartRateBelow_t">
@@ -31,6 +31,6 @@
  * &lt;/complexType>
  * </pre>
- * 
- * 
+ *
+ *
  */
 @XmlAccessorType(XmlAccessType.FIELD)
@@ -47,9 +47,9 @@
     /**
      * Gets the value of the heartRate property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link HeartRateValueT }
-     *     
+     *
      */
     public HeartRateValueT getHeartRate() {
@@ -59,9 +59,9 @@
     /**
      * Sets the value of the heartRate property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link HeartRateValueT }
-     *     
+     *
      */
     public void setHeartRate(HeartRateValueT value) {
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/HeartRateInBeatsPerMinuteT.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/HeartRateInBeatsPerMinuteT.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/HeartRateInBeatsPerMinuteT.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
@@ -17,7 +17,7 @@
 /**
  * <p>Java class for HeartRateInBeatsPerMinute_t complex type.
- * 
+ *
  * <p>The following schema fragment specifies the expected content contained within this class.
- * 
+ *
  * <pre>
  * &lt;complexType name="HeartRateInBeatsPerMinute_t">
@@ -31,6 +31,6 @@
  * &lt;/complexType>
  * </pre>
- * 
- * 
+ *
+ *
  */
 @XmlAccessorType(XmlAccessType.FIELD)
@@ -47,5 +47,5 @@
     /**
      * Gets the value of the value property.
-     * 
+     *
      */
     public short getValue() {
@@ -55,5 +55,5 @@
     /**
      * Sets the value of the value property.
-     * 
+     *
      */
     public void setValue(short value) {
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/HeartRateT.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/HeartRateT.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/HeartRateT.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
@@ -17,7 +17,7 @@
 /**
  * <p>Java class for HeartRate_t complex type.
- * 
+ *
  * <p>The following schema fragment specifies the expected content contained within this class.
- * 
+ *
  * <pre>
  * &lt;complexType name="HeartRate_t">
@@ -31,6 +31,6 @@
  * &lt;/complexType>
  * </pre>
- * 
- * 
+ *
+ *
  */
 @XmlAccessorType(XmlAccessType.FIELD)
@@ -47,9 +47,9 @@
     /**
      * Gets the value of the heartRateZone property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link ZoneT }
-     *     
+     *
      */
     public ZoneT getHeartRateZone() {
@@ -59,9 +59,9 @@
     /**
      * Sets the value of the heartRateZone property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link ZoneT }
-     *     
+     *
      */
     public void setHeartRateZone(ZoneT value) {
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/HeartRateValueT.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/HeartRateValueT.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/HeartRateValueT.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
@@ -17,7 +17,7 @@
 /**
  * <p>Java class for HeartRateValue_t complex type.
- * 
+ *
  * <p>The following schema fragment specifies the expected content contained within this class.
- * 
+ *
  * <pre>
  * &lt;complexType name="HeartRateValue_t">
@@ -28,6 +28,6 @@
  * &lt;/complexType>
  * </pre>
- * 
- * 
+ *
+ *
  */
 @XmlAccessorType(XmlAccessType.FIELD)
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/HistoryFolderT.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/HistoryFolderT.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/HistoryFolderT.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
@@ -20,7 +20,7 @@
 /**
  * <p>Java class for HistoryFolder_t complex type.
- * 
+ *
  * <p>The following schema fragment specifies the expected content contained within this class.
- * 
+ *
  * <pre>
  * &lt;complexType name="HistoryFolder_t">
@@ -39,6 +39,6 @@
  * &lt;/complexType>
  * </pre>
- * 
- * 
+ *
+ *
  */
 @XmlAccessorType(XmlAccessType.FIELD)
@@ -67,5 +67,5 @@
     /**
      * Gets the value of the folder property.
-     * 
+     *
      * <p>
      * This accessor method returns a reference to the live list,
@@ -73,5 +73,5 @@
      * returned list will be present inside the JAXB object.
      * This is why there is not a <CODE>set</CODE> method for the folder property.
-     * 
+     *
      * <p>
      * For example, to add a new item, do as follows:
@@ -79,11 +79,11 @@
      *    getFolder().add(newItem);
      * </pre>
-     * 
-     * 
+     *
+     *
      * <p>
      * Objects of the following type(s) are allowed in the list
      * {@link HistoryFolderT }
-     * 
-     * 
+     *
+     *
      */
     public List<HistoryFolderT> getFolder() {
@@ -96,5 +96,5 @@
     /**
      * Gets the value of the activityRef property.
-     * 
+     *
      * <p>
      * This accessor method returns a reference to the live list,
@@ -102,5 +102,5 @@
      * returned list will be present inside the JAXB object.
      * This is why there is not a <CODE>set</CODE> method for the activityRef property.
-     * 
+     *
      * <p>
      * For example, to add a new item, do as follows:
@@ -108,11 +108,11 @@
      *    getActivityRef().add(newItem);
      * </pre>
-     * 
-     * 
+     *
+     *
      * <p>
      * Objects of the following type(s) are allowed in the list
      * {@link ActivityReferenceT }
-     * 
-     * 
+     *
+     *
      */
     public List<ActivityReferenceT> getActivityRef() {
@@ -125,5 +125,5 @@
     /**
      * Gets the value of the week property.
-     * 
+     *
      * <p>
      * This accessor method returns a reference to the live list,
@@ -131,5 +131,5 @@
      * returned list will be present inside the JAXB object.
      * This is why there is not a <CODE>set</CODE> method for the week property.
-     * 
+     *
      * <p>
      * For example, to add a new item, do as follows:
@@ -137,11 +137,11 @@
      *    getWeek().add(newItem);
      * </pre>
-     * 
-     * 
+     *
+     *
      * <p>
      * Objects of the following type(s) are allowed in the list
      * {@link WeekT }
-     * 
-     * 
+     *
+     *
      */
     public List<WeekT> getWeek() {
@@ -154,9 +154,9 @@
     /**
      * Gets the value of the notes property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link String }
-     *     
+     *
      */
     public String getNotes() {
@@ -166,9 +166,9 @@
     /**
      * Sets the value of the notes property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link String }
-     *     
+     *
      */
     public void setNotes(String value) {
@@ -178,9 +178,9 @@
     /**
      * Gets the value of the extensions property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link ExtensionsT }
-     *     
+     *
      */
     public ExtensionsT getExtensions() {
@@ -190,9 +190,9 @@
     /**
      * Sets the value of the extensions property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link ExtensionsT }
-     *     
+     *
      */
     public void setExtensions(ExtensionsT value) {
@@ -202,9 +202,9 @@
     /**
      * Gets the value of the name property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link String }
-     *     
+     *
      */
     public String getName() {
@@ -214,9 +214,9 @@
     /**
      * Sets the value of the name property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link String }
-     *     
+     *
      */
     public void setName(String value) {
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/HistoryT.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/HistoryT.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/HistoryT.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
@@ -17,7 +17,7 @@
 /**
  * <p>Java class for History_t complex type.
- * 
+ *
  * <p>The following schema fragment specifies the expected content contained within this class.
- * 
+ *
  * <pre>
  * &lt;complexType name="History_t">
@@ -35,6 +35,6 @@
  * &lt;/complexType>
  * </pre>
- * 
- * 
+ *
+ *
  */
 @XmlAccessorType(XmlAccessType.FIELD)
@@ -61,9 +61,9 @@
     /**
      * Gets the value of the running property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link HistoryFolderT }
-     *     
+     *
      */
     public HistoryFolderT getRunning() {
@@ -73,9 +73,9 @@
     /**
      * Sets the value of the running property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link HistoryFolderT }
-     *     
+     *
      */
     public void setRunning(HistoryFolderT value) {
@@ -85,9 +85,9 @@
     /**
      * Gets the value of the biking property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link HistoryFolderT }
-     *     
+     *
      */
     public HistoryFolderT getBiking() {
@@ -97,9 +97,9 @@
     /**
      * Sets the value of the biking property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link HistoryFolderT }
-     *     
+     *
      */
     public void setBiking(HistoryFolderT value) {
@@ -109,9 +109,9 @@
     /**
      * Gets the value of the other property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link HistoryFolderT }
-     *     
+     *
      */
     public HistoryFolderT getOther() {
@@ -121,9 +121,9 @@
     /**
      * Sets the value of the other property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link HistoryFolderT }
-     *     
+     *
      */
     public void setOther(HistoryFolderT value) {
@@ -133,9 +133,9 @@
     /**
      * Gets the value of the multiSport property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link MultiSportFolderT }
-     *     
+     *
      */
     public MultiSportFolderT getMultiSport() {
@@ -145,9 +145,9 @@
     /**
      * Sets the value of the multiSport property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link MultiSportFolderT }
-     *     
+     *
      */
     public void setMultiSport(MultiSportFolderT value) {
@@ -157,9 +157,9 @@
     /**
      * Gets the value of the extensions property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link ExtensionsT }
-     *     
+     *
      */
     public ExtensionsT getExtensions() {
@@ -169,9 +169,9 @@
     /**
      * Sets the value of the extensions property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link ExtensionsT }
-     *     
+     *
      */
     public void setExtensions(ExtensionsT value) {
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/IntensityT.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/IntensityT.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/IntensityT.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
@@ -16,5 +16,5 @@
 /**
  * <p>Java class for Intensity_t.
- * 
+ *
  * <p>The following schema fragment specifies the expected content contained within this class.
  * <p>
@@ -27,5 +27,5 @@
  * &lt;/simpleType>
  * </pre>
- * 
+ *
  */
 @XmlType(name = "Intensity_t")
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/MultiSportFolderT.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/MultiSportFolderT.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/MultiSportFolderT.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
@@ -20,7 +20,7 @@
 /**
  * <p>Java class for MultiSportFolder_t complex type.
- * 
+ *
  * <p>The following schema fragment specifies the expected content contained within this class.
- * 
+ *
  * <pre>
  * &lt;complexType name="MultiSportFolder_t">
@@ -39,6 +39,6 @@
  * &lt;/complexType>
  * </pre>
- * 
- * 
+ *
+ *
  */
 @XmlAccessorType(XmlAccessType.FIELD)
@@ -67,5 +67,5 @@
     /**
      * Gets the value of the folder property.
-     * 
+     *
      * <p>
      * This accessor method returns a reference to the live list,
@@ -73,5 +73,5 @@
      * returned list will be present inside the JAXB object.
      * This is why there is not a <CODE>set</CODE> method for the folder property.
-     * 
+     *
      * <p>
      * For example, to add a new item, do as follows:
@@ -79,11 +79,11 @@
      *    getFolder().add(newItem);
      * </pre>
-     * 
-     * 
+     *
+     *
      * <p>
      * Objects of the following type(s) are allowed in the list
      * {@link MultiSportFolderT }
-     * 
-     * 
+     *
+     *
      */
     public List<MultiSportFolderT> getFolder() {
@@ -96,5 +96,5 @@
     /**
      * Gets the value of the multisportActivityRef property.
-     * 
+     *
      * <p>
      * This accessor method returns a reference to the live list,
@@ -102,5 +102,5 @@
      * returned list will be present inside the JAXB object.
      * This is why there is not a <CODE>set</CODE> method for the multisportActivityRef property.
-     * 
+     *
      * <p>
      * For example, to add a new item, do as follows:
@@ -108,11 +108,11 @@
      *    getMultisportActivityRef().add(newItem);
      * </pre>
-     * 
-     * 
+     *
+     *
      * <p>
      * Objects of the following type(s) are allowed in the list
      * {@link ActivityReferenceT }
-     * 
-     * 
+     *
+     *
      */
     public List<ActivityReferenceT> getMultisportActivityRef() {
@@ -125,5 +125,5 @@
     /**
      * Gets the value of the week property.
-     * 
+     *
      * <p>
      * This accessor method returns a reference to the live list,
@@ -131,5 +131,5 @@
      * returned list will be present inside the JAXB object.
      * This is why there is not a <CODE>set</CODE> method for the week property.
-     * 
+     *
      * <p>
      * For example, to add a new item, do as follows:
@@ -137,11 +137,11 @@
      *    getWeek().add(newItem);
      * </pre>
-     * 
-     * 
+     *
+     *
      * <p>
      * Objects of the following type(s) are allowed in the list
      * {@link WeekT }
-     * 
-     * 
+     *
+     *
      */
     public List<WeekT> getWeek() {
@@ -154,9 +154,9 @@
     /**
      * Gets the value of the notes property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link String }
-     *     
+     *
      */
     public String getNotes() {
@@ -166,9 +166,9 @@
     /**
      * Sets the value of the notes property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link String }
-     *     
+     *
      */
     public void setNotes(String value) {
@@ -178,9 +178,9 @@
     /**
      * Gets the value of the extensions property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link ExtensionsT }
-     *     
+     *
      */
     public ExtensionsT getExtensions() {
@@ -190,9 +190,9 @@
     /**
      * Sets the value of the extensions property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link ExtensionsT }
-     *     
+     *
      */
     public void setExtensions(ExtensionsT value) {
@@ -202,9 +202,9 @@
     /**
      * Gets the value of the name property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link String }
-     *     
+     *
      */
     public String getName() {
@@ -214,9 +214,9 @@
     /**
      * Sets the value of the name property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link String }
-     *     
+     *
      */
     public void setName(String value) {
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/MultiSportSessionT.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/MultiSportSessionT.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/MultiSportSessionT.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
@@ -21,7 +21,7 @@
 /**
  * <p>Java class for MultiSportSession_t complex type.
- * 
+ *
  * <p>The following schema fragment specifies the expected content contained within this class.
- * 
+ *
  * <pre>
  * &lt;complexType name="MultiSportSession_t">
@@ -38,6 +38,6 @@
  * &lt;/complexType>
  * </pre>
- * 
- * 
+ *
+ *
  */
 @XmlAccessorType(XmlAccessType.FIELD)
@@ -62,9 +62,9 @@
     /**
      * Gets the value of the id property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link XMLGregorianCalendar }
-     *     
+     *
      */
     public XMLGregorianCalendar getId() {
@@ -74,9 +74,9 @@
     /**
      * Sets the value of the id property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link XMLGregorianCalendar }
-     *     
+     *
      */
     public void setId(XMLGregorianCalendar value) {
@@ -86,9 +86,9 @@
     /**
      * Gets the value of the firstSport property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link FirstSportT }
-     *     
+     *
      */
     public FirstSportT getFirstSport() {
@@ -98,9 +98,9 @@
     /**
      * Sets the value of the firstSport property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link FirstSportT }
-     *     
+     *
      */
     public void setFirstSport(FirstSportT value) {
@@ -110,5 +110,5 @@
     /**
      * Gets the value of the nextSport property.
-     * 
+     *
      * <p>
      * This accessor method returns a reference to the live list,
@@ -116,5 +116,5 @@
      * returned list will be present inside the JAXB object.
      * This is why there is not a <CODE>set</CODE> method for the nextSport property.
-     * 
+     *
      * <p>
      * For example, to add a new item, do as follows:
@@ -122,11 +122,11 @@
      *    getNextSport().add(newItem);
      * </pre>
-     * 
-     * 
+     *
+     *
      * <p>
      * Objects of the following type(s) are allowed in the list
      * {@link NextSportT }
-     * 
-     * 
+     *
+     *
      */
     public List<NextSportT> getNextSport() {
@@ -139,9 +139,9 @@
     /**
      * Gets the value of the notes property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link String }
-     *     
+     *
      */
     public String getNotes() {
@@ -151,9 +151,9 @@
     /**
      * Sets the value of the notes property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link String }
-     *     
+     *
      */
     public void setNotes(String value) {
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/NameKeyReferenceT.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/NameKeyReferenceT.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/NameKeyReferenceT.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
@@ -19,7 +19,7 @@
 /**
  * <p>Java class for NameKeyReference_t complex type.
- * 
+ *
  * <p>The following schema fragment specifies the expected content contained within this class.
- * 
+ *
  * <pre>
  * &lt;complexType name="NameKeyReference_t">
@@ -33,6 +33,6 @@
  * &lt;/complexType>
  * </pre>
- * 
- * 
+ *
+ *
  */
 @XmlAccessorType(XmlAccessType.FIELD)
@@ -48,9 +48,9 @@
     /**
      * Gets the value of the id property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link String }
-     *     
+     *
      */
     public String getId() {
@@ -60,9 +60,9 @@
     /**
      * Sets the value of the id property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link String }
-     *     
+     *
      */
     public void setId(String value) {
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/NextSportT.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/NextSportT.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/NextSportT.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
@@ -17,7 +17,7 @@
 /**
  * <p>Java class for NextSport_t complex type.
- * 
+ *
  * <p>The following schema fragment specifies the expected content contained within this class.
- * 
+ *
  * <pre>
  * &lt;complexType name="NextSport_t">
@@ -32,6 +32,6 @@
  * &lt;/complexType>
  * </pre>
- * 
- * 
+ *
+ *
  */
 @XmlAccessorType(XmlAccessType.FIELD)
@@ -49,9 +49,9 @@
     /**
      * Gets the value of the transition property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link ActivityLapT }
-     *     
+     *
      */
     public ActivityLapT getTransition() {
@@ -61,9 +61,9 @@
     /**
      * Sets the value of the transition property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link ActivityLapT }
-     *     
+     *
      */
     public void setTransition(ActivityLapT value) {
@@ -73,9 +73,9 @@
     /**
      * Gets the value of the activity property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link ActivityT }
-     *     
+     *
      */
     public ActivityT getActivity() {
@@ -85,9 +85,9 @@
     /**
      * Sets the value of the activity property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link ActivityT }
-     *     
+     *
      */
     public void setActivity(ActivityT value) {
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/NoneT.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/NoneT.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/NoneT.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
@@ -16,7 +16,7 @@
 /**
  * <p>Java class for None_t complex type.
- * 
+ *
  * <p>The following schema fragment specifies the expected content contained within this class.
- * 
+ *
  * <pre>
  * &lt;complexType name="None_t">
@@ -27,6 +27,6 @@
  * &lt;/complexType>
  * </pre>
- * 
- * 
+ *
+ *
  */
 @XmlAccessorType(XmlAccessType.FIELD)
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/ObjectFactory.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/ObjectFactory.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/ObjectFactory.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
@@ -16,16 +16,16 @@
 
 /**
- * This object contains factory methods for each 
- * Java content interface and Java element interface 
- * generated in the org.openstreetmap.josm.plugins.dataimport.io.tcx package. 
- * <p>An ObjectFactory allows you to programatically 
- * construct new instances of the Java representation 
- * for XML content. The Java representation of XML 
- * content can consist of schema derived interfaces 
- * and classes representing the binding of schema 
- * type definitions, element declarations and model 
- * groups.  Factory methods for each of these are 
+ * This object contains factory methods for each
+ * Java content interface and Java element interface
+ * generated in the org.openstreetmap.josm.plugins.dataimport.io.tcx package.
+ * <p>An ObjectFactory allows you to programatically
+ * construct new instances of the Java representation
+ * for XML content. The Java representation of XML
+ * content can consist of schema derived interfaces
+ * and classes representing the binding of schema
+ * type definitions, element declarations and model
+ * groups.  Factory methods for each of these are
  * provided in this class.
- * 
+ *
  */
 @XmlRegistry
@@ -36,5 +36,5 @@
     /**
      * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.openstreetmap.josm.plugins.dataimport.io.tcx
-     * 
+     *
      */
     public ObjectFactory() {
@@ -43,5 +43,5 @@
     /**
      * Create an instance of {@link NameKeyReferenceT }
-     * 
+     *
      */
     public NameKeyReferenceT createNameKeyReferenceT() {
@@ -51,5 +51,5 @@
     /**
      * Create an instance of {@link CourseListT }
-     * 
+     *
      */
     public CourseListT createCourseListT() {
@@ -59,5 +59,5 @@
     /**
      * Create an instance of {@link RepeatT }
-     * 
+     *
      */
     public RepeatT createRepeatT() {
@@ -67,5 +67,5 @@
     /**
      * Create an instance of {@link SpeedT }
-     * 
+     *
      */
     public SpeedT createSpeedT() {
@@ -75,5 +75,5 @@
     /**
      * Create an instance of {@link HeartRateAsPercentOfMaxT }
-     * 
+     *
      */
     public HeartRateAsPercentOfMaxT createHeartRateAsPercentOfMaxT() {
@@ -83,5 +83,5 @@
     /**
      * Create an instance of {@link NoneT }
-     * 
+     *
      */
     public NoneT createNoneT() {
@@ -91,5 +91,5 @@
     /**
      * Create an instance of {@link CourseFolderT }
-     * 
+     *
      */
     public CourseFolderT createCourseFolderT() {
@@ -99,5 +99,5 @@
     /**
      * Create an instance of {@link TrackT }
-     * 
+     *
      */
     public TrackT createTrackT() {
@@ -107,5 +107,5 @@
     /**
      * Create an instance of {@link PredefinedSpeedZoneT }
-     * 
+     *
      */
     public PredefinedSpeedZoneT createPredefinedSpeedZoneT() {
@@ -115,5 +115,5 @@
     /**
      * Create an instance of {@link CadenceT }
-     * 
+     *
      */
     public CadenceT createCadenceT() {
@@ -123,5 +123,5 @@
     /**
      * Create an instance of {@link WorkoutFolderT }
-     * 
+     *
      */
     public WorkoutFolderT createWorkoutFolderT() {
@@ -131,5 +131,5 @@
     /**
      * Create an instance of {@link QuickWorkoutT }
-     * 
+     *
      */
     public QuickWorkoutT createQuickWorkoutT() {
@@ -139,5 +139,5 @@
     /**
      * Create an instance of {@link ActivityReferenceT }
-     * 
+     *
      */
     public ActivityReferenceT createActivityReferenceT() {
@@ -147,5 +147,5 @@
     /**
      * Create an instance of {@link VersionT }
-     * 
+     *
      */
     public VersionT createVersionT() {
@@ -155,5 +155,5 @@
     /**
      * Create an instance of {@link WorkoutListT }
-     * 
+     *
      */
     public WorkoutListT createWorkoutListT() {
@@ -163,5 +163,5 @@
     /**
      * Create an instance of {@link HeartRateInBeatsPerMinuteT }
-     * 
+     *
      */
     public HeartRateInBeatsPerMinuteT createHeartRateInBeatsPerMinuteT() {
@@ -171,5 +171,5 @@
     /**
      * Create an instance of {@link PositionT }
-     * 
+     *
      */
     public PositionT createPositionT() {
@@ -179,5 +179,5 @@
     /**
      * Create an instance of {@link HistoryT }
-     * 
+     *
      */
     public HistoryT createHistoryT() {
@@ -187,5 +187,5 @@
     /**
      * Create an instance of {@link ApplicationT }
-     * 
+     *
      */
     public ApplicationT createApplicationT() {
@@ -195,5 +195,5 @@
     /**
      * Create an instance of {@link DeviceT }
-     * 
+     *
      */
     public DeviceT createDeviceT() {
@@ -203,5 +203,5 @@
     /**
      * Create an instance of {@link ExtensionsT }
-     * 
+     *
      */
     public ExtensionsT createExtensionsT() {
@@ -211,5 +211,5 @@
     /**
      * Create an instance of {@link TimeT }
-     * 
+     *
      */
     public TimeT createTimeT() {
@@ -219,5 +219,5 @@
     /**
      * Create an instance of {@link WorkoutsT }
-     * 
+     *
      */
     public WorkoutsT createWorkoutsT() {
@@ -227,5 +227,5 @@
     /**
      * Create an instance of {@link ActivityLapT }
-     * 
+     *
      */
     public ActivityLapT createActivityLapT() {
@@ -235,5 +235,5 @@
     /**
      * Create an instance of {@link MultiSportSessionT }
-     * 
+     *
      */
     public MultiSportSessionT createMultiSportSessionT() {
@@ -243,5 +243,5 @@
     /**
      * Create an instance of {@link BuildT }
-     * 
+     *
      */
     public BuildT createBuildT() {
@@ -251,5 +251,5 @@
     /**
      * Create an instance of {@link ActivityT }
-     * 
+     *
      */
     public ActivityT createActivityT() {
@@ -259,5 +259,5 @@
     /**
      * Create an instance of {@link TrainingT }
-     * 
+     *
      */
     public TrainingT createTrainingT() {
@@ -267,5 +267,5 @@
     /**
      * Create an instance of {@link PlanT }
-     * 
+     *
      */
     public PlanT createPlanT() {
@@ -275,5 +275,5 @@
     /**
      * Create an instance of {@link TrainingCenterDatabaseT }
-     * 
+     *
      */
     public TrainingCenterDatabaseT createTrainingCenterDatabaseT() {
@@ -283,5 +283,5 @@
     /**
      * Create an instance of {@link FoldersT }
-     * 
+     *
      */
     public FoldersT createFoldersT() {
@@ -291,5 +291,5 @@
     /**
      * Create an instance of {@link UserInitiatedT }
-     * 
+     *
      */
     public UserInitiatedT createUserInitiatedT() {
@@ -299,5 +299,5 @@
     /**
      * Create an instance of {@link MultiSportFolderT }
-     * 
+     *
      */
     public MultiSportFolderT createMultiSportFolderT() {
@@ -307,5 +307,5 @@
     /**
      * Create an instance of {@link ActivityListT }
-     * 
+     *
      */
     public ActivityListT createActivityListT() {
@@ -315,5 +315,5 @@
     /**
      * Create an instance of {@link CustomHeartRateZoneT }
-     * 
+     *
      */
     public CustomHeartRateZoneT createCustomHeartRateZoneT() {
@@ -323,5 +323,5 @@
     /**
      * Create an instance of {@link TrackpointT }
-     * 
+     *
      */
     public TrackpointT createTrackpointT() {
@@ -331,5 +331,5 @@
     /**
      * Create an instance of {@link CourseT }
-     * 
+     *
      */
     public CourseT createCourseT() {
@@ -339,5 +339,5 @@
     /**
      * Create an instance of {@link CourseLapT }
-     * 
+     *
      */
     public CourseLapT createCourseLapT() {
@@ -347,5 +347,5 @@
     /**
      * Create an instance of {@link NextSportT }
-     * 
+     *
      */
     public NextSportT createNextSportT() {
@@ -355,5 +355,5 @@
     /**
      * Create an instance of {@link DistanceT }
-     * 
+     *
      */
     public DistanceT createDistanceT() {
@@ -363,5 +363,5 @@
     /**
      * Create an instance of {@link FirstSportT }
-     * 
+     *
      */
     public FirstSportT createFirstSportT() {
@@ -371,5 +371,5 @@
     /**
      * Create an instance of {@link HeartRateT }
-     * 
+     *
      */
     public HeartRateT createHeartRateT() {
@@ -379,5 +379,5 @@
     /**
      * Create an instance of {@link CaloriesBurnedT }
-     * 
+     *
      */
     public CaloriesBurnedT createCaloriesBurnedT() {
@@ -387,5 +387,5 @@
     /**
      * Create an instance of {@link StepT }
-     * 
+     *
      */
     public StepT createStepT() {
@@ -395,5 +395,5 @@
     /**
      * Create an instance of {@link HeartRateBelowT }
-     * 
+     *
      */
     public HeartRateBelowT createHeartRateBelowT() {
@@ -403,5 +403,5 @@
     /**
      * Create an instance of {@link HeartRateAboveT }
-     * 
+     *
      */
     public HeartRateAboveT createHeartRateAboveT() {
@@ -411,5 +411,5 @@
     /**
      * Create an instance of {@link CoursesT }
-     * 
+     *
      */
     public CoursesT createCoursesT() {
@@ -419,5 +419,5 @@
     /**
      * Create an instance of {@link WorkoutT }
-     * 
+     *
      */
     public WorkoutT createWorkoutT() {
@@ -427,5 +427,5 @@
     /**
      * Create an instance of {@link WeekT }
-     * 
+     *
      */
     public WeekT createWeekT() {
@@ -435,5 +435,5 @@
     /**
      * Create an instance of {@link CustomSpeedZoneT }
-     * 
+     *
      */
     public CustomSpeedZoneT createCustomSpeedZoneT() {
@@ -443,5 +443,5 @@
     /**
      * Create an instance of {@link HistoryFolderT }
-     * 
+     *
      */
     public HistoryFolderT createHistoryFolderT() {
@@ -451,5 +451,5 @@
     /**
      * Create an instance of {@link PredefinedHeartRateZoneT }
-     * 
+     *
      */
     public PredefinedHeartRateZoneT createPredefinedHeartRateZoneT() {
@@ -459,5 +459,5 @@
     /**
      * Create an instance of {@link CoursePointT }
-     * 
+     *
      */
     public CoursePointT createCoursePointT() {
@@ -467,5 +467,5 @@
     /**
      * Create an instance of {@link JAXBElement }{@code <}{@link TrainingCenterDatabaseT }{@code >}}
-     * 
+     *
      */
     @XmlElementDecl(namespace = "http://www.garmin.com/xmlschemas/TrainingCenterDatabase/v2", name = "TrainingCenterDatabase")
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/PlanT.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/PlanT.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/PlanT.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
@@ -20,7 +20,7 @@
 /**
  * <p>Java class for Plan_t complex type.
- * 
+ *
  * <p>The following schema fragment specifies the expected content contained within this class.
- * 
+ *
  * <pre>
  * &lt;complexType name="Plan_t">
@@ -37,6 +37,6 @@
  * &lt;/complexType>
  * </pre>
- * 
- * 
+ *
+ *
  */
 @XmlAccessorType(XmlAccessType.FIELD)
@@ -59,9 +59,9 @@
     /**
      * Gets the value of the name property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link String }
-     *     
+     *
      */
     public String getName() {
@@ -71,9 +71,9 @@
     /**
      * Sets the value of the name property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link String }
-     *     
+     *
      */
     public void setName(String value) {
@@ -83,9 +83,9 @@
     /**
      * Gets the value of the extensions property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link ExtensionsT }
-     *     
+     *
      */
     public ExtensionsT getExtensions() {
@@ -95,9 +95,9 @@
     /**
      * Sets the value of the extensions property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link ExtensionsT }
-     *     
+     *
      */
     public void setExtensions(ExtensionsT value) {
@@ -107,9 +107,9 @@
     /**
      * Gets the value of the type property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link TrainingTypeT }
-     *     
+     *
      */
     public TrainingTypeT getType() {
@@ -119,9 +119,9 @@
     /**
      * Sets the value of the type property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link TrainingTypeT }
-     *     
+     *
      */
     public void setType(TrainingTypeT value) {
@@ -131,5 +131,5 @@
     /**
      * Gets the value of the intervalWorkout property.
-     * 
+     *
      */
     public boolean isIntervalWorkout() {
@@ -139,5 +139,5 @@
     /**
      * Sets the value of the intervalWorkout property.
-     * 
+     *
      */
     public void setIntervalWorkout(boolean value) {
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/PositionT.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/PositionT.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/PositionT.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
@@ -17,7 +17,7 @@
 /**
  * <p>Java class for Position_t complex type.
- * 
+ *
  * <p>The following schema fragment specifies the expected content contained within this class.
- * 
+ *
  * <pre>
  * &lt;complexType name="Position_t">
@@ -32,6 +32,6 @@
  * &lt;/complexType>
  * </pre>
- * 
- * 
+ *
+ *
  */
 @XmlAccessorType(XmlAccessType.FIELD)
@@ -49,5 +49,5 @@
     /**
      * Gets the value of the latitudeDegrees property.
-     * 
+     *
      */
     public double getLatitudeDegrees() {
@@ -57,5 +57,5 @@
     /**
      * Sets the value of the latitudeDegrees property.
-     * 
+     *
      */
     public void setLatitudeDegrees(double value) {
@@ -65,5 +65,5 @@
     /**
      * Gets the value of the longitudeDegrees property.
-     * 
+     *
      */
     public double getLongitudeDegrees() {
@@ -73,5 +73,5 @@
     /**
      * Sets the value of the longitudeDegrees property.
-     * 
+     *
      */
     public void setLongitudeDegrees(double value) {
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/PredefinedHeartRateZoneT.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/PredefinedHeartRateZoneT.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/PredefinedHeartRateZoneT.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
@@ -17,7 +17,7 @@
 /**
  * <p>Java class for PredefinedHeartRateZone_t complex type.
- * 
+ *
  * <p>The following schema fragment specifies the expected content contained within this class.
- * 
+ *
  * <pre>
  * &lt;complexType name="PredefinedHeartRateZone_t">
@@ -31,6 +31,6 @@
  * &lt;/complexType>
  * </pre>
- * 
- * 
+ *
+ *
  */
 @XmlAccessorType(XmlAccessType.FIELD)
@@ -47,5 +47,5 @@
     /**
      * Gets the value of the number property.
-     * 
+     *
      */
     public int getNumber() {
@@ -55,5 +55,5 @@
     /**
      * Sets the value of the number property.
-     * 
+     *
      */
     public void setNumber(int value) {
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/PredefinedSpeedZoneT.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/PredefinedSpeedZoneT.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/PredefinedSpeedZoneT.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
@@ -17,7 +17,7 @@
 /**
  * <p>Java class for PredefinedSpeedZone_t complex type.
- * 
+ *
  * <p>The following schema fragment specifies the expected content contained within this class.
- * 
+ *
  * <pre>
  * &lt;complexType name="PredefinedSpeedZone_t">
@@ -31,6 +31,6 @@
  * &lt;/complexType>
  * </pre>
- * 
- * 
+ *
+ *
  */
 @XmlAccessorType(XmlAccessType.FIELD)
@@ -47,5 +47,5 @@
     /**
      * Gets the value of the number property.
-     * 
+     *
      */
     public int getNumber() {
@@ -55,5 +55,5 @@
     /**
      * Sets the value of the number property.
-     * 
+     *
      */
     public void setNumber(int value) {
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/QuickWorkoutT.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/QuickWorkoutT.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/QuickWorkoutT.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
@@ -17,7 +17,7 @@
 /**
  * <p>Java class for QuickWorkout_t complex type.
- * 
+ *
  * <p>The following schema fragment specifies the expected content contained within this class.
- * 
+ *
  * <pre>
  * &lt;complexType name="QuickWorkout_t">
@@ -32,6 +32,6 @@
  * &lt;/complexType>
  * </pre>
- * 
- * 
+ *
+ *
  */
 @XmlAccessorType(XmlAccessType.FIELD)
@@ -49,5 +49,5 @@
     /**
      * Gets the value of the totalTimeSeconds property.
-     * 
+     *
      */
     public double getTotalTimeSeconds() {
@@ -57,5 +57,5 @@
     /**
      * Sets the value of the totalTimeSeconds property.
-     * 
+     *
      */
     public void setTotalTimeSeconds(double value) {
@@ -65,5 +65,5 @@
     /**
      * Gets the value of the distanceMeters property.
-     * 
+     *
      */
     public double getDistanceMeters() {
@@ -73,5 +73,5 @@
     /**
      * Sets the value of the distanceMeters property.
-     * 
+     *
      */
     public void setDistanceMeters(double value) {
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/RepeatT.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/RepeatT.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/RepeatT.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
@@ -19,7 +19,7 @@
 /**
  * <p>Java class for Repeat_t complex type.
- * 
+ *
  * <p>The following schema fragment specifies the expected content contained within this class.
- * 
+ *
  * <pre>
  * &lt;complexType name="Repeat_t">
@@ -34,6 +34,6 @@
  * &lt;/complexType>
  * </pre>
- * 
- * 
+ *
+ *
  */
 @XmlAccessorType(XmlAccessType.FIELD)
@@ -53,5 +53,5 @@
     /**
      * Gets the value of the repetitions property.
-     * 
+     *
      */
     public int getRepetitions() {
@@ -61,5 +61,5 @@
     /**
      * Sets the value of the repetitions property.
-     * 
+     *
      */
     public void setRepetitions(int value) {
@@ -69,5 +69,5 @@
     /**
      * Gets the value of the child property.
-     * 
+     *
      * <p>
      * This accessor method returns a reference to the live list,
@@ -75,5 +75,5 @@
      * returned list will be present inside the JAXB object.
      * This is why there is not a <CODE>set</CODE> method for the child property.
-     * 
+     *
      * <p>
      * For example, to add a new item, do as follows:
@@ -81,11 +81,11 @@
      *    getChild().add(newItem);
      * </pre>
-     * 
-     * 
+     *
+     *
      * <p>
      * Objects of the following type(s) are allowed in the list
      * {@link AbstractStepT }
-     * 
-     * 
+     *
+     *
      */
     public List<AbstractStepT> getChild() {
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/SensorStateT.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/SensorStateT.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/SensorStateT.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
@@ -16,5 +16,5 @@
 /**
  * <p>Java class for SensorState_t.
- * 
+ *
  * <p>The following schema fragment specifies the expected content contained within this class.
  * <p>
@@ -27,5 +27,5 @@
  * &lt;/simpleType>
  * </pre>
- * 
+ *
  */
 @XmlType(name = "SensorState_t")
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/SpeedT.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/SpeedT.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/SpeedT.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
@@ -17,7 +17,7 @@
 /**
  * <p>Java class for Speed_t complex type.
- * 
+ *
  * <p>The following schema fragment specifies the expected content contained within this class.
- * 
+ *
  * <pre>
  * &lt;complexType name="Speed_t">
@@ -31,6 +31,6 @@
  * &lt;/complexType>
  * </pre>
- * 
- * 
+ *
+ *
  */
 @XmlAccessorType(XmlAccessType.FIELD)
@@ -47,9 +47,9 @@
     /**
      * Gets the value of the speedZone property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link ZoneT }
-     *     
+     *
      */
     public ZoneT getSpeedZone() {
@@ -59,9 +59,9 @@
     /**
      * Sets the value of the speedZone property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link ZoneT }
-     *     
+     *
      */
     public void setSpeedZone(ZoneT value) {
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/SpeedTypeT.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/SpeedTypeT.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/SpeedTypeT.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
@@ -16,5 +16,5 @@
 /**
  * <p>Java class for SpeedType_t.
- * 
+ *
  * <p>The following schema fragment specifies the expected content contained within this class.
  * <p>
@@ -27,5 +27,5 @@
  * &lt;/simpleType>
  * </pre>
- * 
+ *
  */
 @XmlType(name = "SpeedType_t")
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/SportT.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/SportT.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/SportT.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
@@ -16,5 +16,5 @@
 /**
  * <p>Java class for Sport_t.
- * 
+ *
  * <p>The following schema fragment specifies the expected content contained within this class.
  * <p>
@@ -28,5 +28,5 @@
  * &lt;/simpleType>
  * </pre>
- * 
+ *
  */
 @XmlType(name = "Sport_t")
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/StepT.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/StepT.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/StepT.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
@@ -19,7 +19,7 @@
 /**
  * <p>Java class for Step_t complex type.
- * 
+ *
  * <p>The following schema fragment specifies the expected content contained within this class.
- * 
+ *
  * <pre>
  * &lt;complexType name="Step_t">
@@ -36,6 +36,6 @@
  * &lt;/complexType>
  * </pre>
- * 
- * 
+ *
+ *
  */
 @XmlAccessorType(XmlAccessType.FIELD)
@@ -62,9 +62,9 @@
     /**
      * Gets the value of the name property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link String }
-     *     
+     *
      */
     public String getName() {
@@ -74,9 +74,9 @@
     /**
      * Sets the value of the name property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link String }
-     *     
+     *
      */
     public void setName(String value) {
@@ -86,9 +86,9 @@
     /**
      * Gets the value of the duration property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link DurationT }
-     *     
+     *
      */
     public DurationT getDuration() {
@@ -98,9 +98,9 @@
     /**
      * Sets the value of the duration property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link DurationT }
-     *     
+     *
      */
     public void setDuration(DurationT value) {
@@ -110,9 +110,9 @@
     /**
      * Gets the value of the intensity property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link IntensityT }
-     *     
+     *
      */
     public IntensityT getIntensity() {
@@ -122,9 +122,9 @@
     /**
      * Sets the value of the intensity property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link IntensityT }
-     *     
+     *
      */
     public void setIntensity(IntensityT value) {
@@ -134,9 +134,9 @@
     /**
      * Gets the value of the target property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link TargetT }
-     *     
+     *
      */
     public TargetT getTarget() {
@@ -146,9 +146,9 @@
     /**
      * Sets the value of the target property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link TargetT }
-     *     
+     *
      */
     public void setTarget(TargetT value) {
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/TargetT.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/TargetT.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/TargetT.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
@@ -17,7 +17,7 @@
 /**
  * <p>Java class for Target_t complex type.
- * 
+ *
  * <p>The following schema fragment specifies the expected content contained within this class.
- * 
+ *
  * <pre>
  * &lt;complexType name="Target_t">
@@ -28,6 +28,6 @@
  * &lt;/complexType>
  * </pre>
- * 
- * 
+ *
+ *
  */
 @XmlAccessorType(XmlAccessType.FIELD)
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/TimeT.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/TimeT.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/TimeT.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
@@ -18,7 +18,7 @@
 /**
  * <p>Java class for Time_t complex type.
- * 
+ *
  * <p>The following schema fragment specifies the expected content contained within this class.
- * 
+ *
  * <pre>
  * &lt;complexType name="Time_t">
@@ -32,6 +32,6 @@
  * &lt;/complexType>
  * </pre>
- * 
- * 
+ *
+ *
  */
 @XmlAccessorType(XmlAccessType.FIELD)
@@ -49,5 +49,5 @@
     /**
      * Gets the value of the seconds property.
-     * 
+     *
      */
     public int getSeconds() {
@@ -57,5 +57,5 @@
     /**
      * Sets the value of the seconds property.
-     * 
+     *
      */
     public void setSeconds(int value) {
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/TrackT.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/TrackT.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/TrackT.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
@@ -19,7 +19,7 @@
 /**
  * <p>Java class for Track_t complex type.
- * 
+ *
  * <p>The following schema fragment specifies the expected content contained within this class.
- * 
+ *
  * <pre>
  * &lt;complexType name="Track_t">
@@ -33,6 +33,6 @@
  * &lt;/complexType>
  * </pre>
- * 
- * 
+ *
+ *
  */
 @XmlAccessorType(XmlAccessType.FIELD)
@@ -47,5 +47,5 @@
     /**
      * Gets the value of the trackpoint property.
-     * 
+     *
      * <p>
      * This accessor method returns a reference to the live list,
@@ -53,5 +53,5 @@
      * returned list will be present inside the JAXB object.
      * This is why there is not a <CODE>set</CODE> method for the trackpoint property.
-     * 
+     *
      * <p>
      * For example, to add a new item, do as follows:
@@ -59,11 +59,11 @@
      *    getTrackpoint().add(newItem);
      * </pre>
-     * 
-     * 
+     *
+     *
      * <p>
      * Objects of the following type(s) are allowed in the list
      * {@link TrackpointT }
-     * 
-     * 
+     *
+     *
      */
     public List<TrackpointT> getTrackpoint() {
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/TrackpointT.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/TrackpointT.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/TrackpointT.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
@@ -19,7 +19,7 @@
 /**
  * <p>Java class for Trackpoint_t complex type.
- * 
+ *
  * <p>The following schema fragment specifies the expected content contained within this class.
- * 
+ *
  * <pre>
  * &lt;complexType name="Trackpoint_t">
@@ -40,6 +40,6 @@
  * &lt;/complexType>
  * </pre>
- * 
- * 
+ *
+ *
  */
 @XmlAccessorType(XmlAccessType.FIELD)
@@ -76,9 +76,9 @@
     /**
      * Gets the value of the time property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link XMLGregorianCalendar }
-     *     
+     *
      */
     public XMLGregorianCalendar getTime() {
@@ -88,9 +88,9 @@
     /**
      * Sets the value of the time property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link XMLGregorianCalendar }
-     *     
+     *
      */
     public void setTime(XMLGregorianCalendar value) {
@@ -100,9 +100,9 @@
     /**
      * Gets the value of the position property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link PositionT }
-     *     
+     *
      */
     public PositionT getPosition() {
@@ -112,9 +112,9 @@
     /**
      * Sets the value of the position property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link PositionT }
-     *     
+     *
      */
     public void setPosition(PositionT value) {
@@ -124,9 +124,9 @@
     /**
      * Gets the value of the altitudeMeters property.
-     * 
-     * @return
-     *     possible object is
-     *     {@link Double }
-     *     
+     *
+     * @return
+     *     possible object is
+     *     {@link Double }
+     *
      */
     public Double getAltitudeMeters() {
@@ -136,9 +136,9 @@
     /**
      * Sets the value of the altitudeMeters property.
-     * 
-     * @param value
-     *     allowed object is
-     *     {@link Double }
-     *     
+     *
+     * @param value
+     *     allowed object is
+     *     {@link Double }
+     *
      */
     public void setAltitudeMeters(Double value) {
@@ -148,9 +148,9 @@
     /**
      * Gets the value of the distanceMeters property.
-     * 
-     * @return
-     *     possible object is
-     *     {@link Double }
-     *     
+     *
+     * @return
+     *     possible object is
+     *     {@link Double }
+     *
      */
     public Double getDistanceMeters() {
@@ -160,9 +160,9 @@
     /**
      * Sets the value of the distanceMeters property.
-     * 
-     * @param value
-     *     allowed object is
-     *     {@link Double }
-     *     
+     *
+     * @param value
+     *     allowed object is
+     *     {@link Double }
+     *
      */
     public void setDistanceMeters(Double value) {
@@ -172,9 +172,9 @@
     /**
      * Gets the value of the heartRateBpm property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link HeartRateInBeatsPerMinuteT }
-     *     
+     *
      */
     public HeartRateInBeatsPerMinuteT getHeartRateBpm() {
@@ -184,9 +184,9 @@
     /**
      * Sets the value of the heartRateBpm property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link HeartRateInBeatsPerMinuteT }
-     *     
+     *
      */
     public void setHeartRateBpm(HeartRateInBeatsPerMinuteT value) {
@@ -196,9 +196,9 @@
     /**
      * Gets the value of the cadence property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link Short }
-     *     
+     *
      */
     public Short getCadence() {
@@ -208,9 +208,9 @@
     /**
      * Sets the value of the cadence property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link Short }
-     *     
+     *
      */
     public void setCadence(Short value) {
@@ -220,9 +220,9 @@
     /**
      * Gets the value of the sensorState property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link SensorStateT }
-     *     
+     *
      */
     public SensorStateT getSensorState() {
@@ -232,9 +232,9 @@
     /**
      * Sets the value of the sensorState property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link SensorStateT }
-     *     
+     *
      */
     public void setSensorState(SensorStateT value) {
@@ -244,9 +244,9 @@
     /**
      * Gets the value of the extensions property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link ExtensionsT }
-     *     
+     *
      */
     public ExtensionsT getExtensions() {
@@ -256,9 +256,9 @@
     /**
      * Sets the value of the extensions property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link ExtensionsT }
-     *     
+     *
      */
     public void setExtensions(ExtensionsT value) {
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/TrainingCenterDatabaseT.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/TrainingCenterDatabaseT.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/TrainingCenterDatabaseT.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
@@ -17,7 +17,7 @@
 /**
  * <p>Java class for TrainingCenterDatabase_t complex type.
- * 
+ *
  * <p>The following schema fragment specifies the expected content contained within this class.
- * 
+ *
  * <pre>
  * &lt;complexType name="TrainingCenterDatabase_t">
@@ -36,6 +36,6 @@
  * &lt;/complexType>
  * </pre>
- * 
- * 
+ *
+ *
  */
 @XmlAccessorType(XmlAccessType.FIELD)
@@ -65,9 +65,9 @@
     /**
      * Gets the value of the folders property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link FoldersT }
-     *     
+     *
      */
     public FoldersT getFolders() {
@@ -77,9 +77,9 @@
     /**
      * Sets the value of the folders property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link FoldersT }
-     *     
+     *
      */
     public void setFolders(FoldersT value) {
@@ -89,9 +89,9 @@
     /**
      * Gets the value of the activities property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link ActivityListT }
-     *     
+     *
      */
     public ActivityListT getActivities() {
@@ -101,9 +101,9 @@
     /**
      * Sets the value of the activities property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link ActivityListT }
-     *     
+     *
      */
     public void setActivities(ActivityListT value) {
@@ -113,9 +113,9 @@
     /**
      * Gets the value of the workouts property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link WorkoutListT }
-     *     
+     *
      */
     public WorkoutListT getWorkouts() {
@@ -125,9 +125,9 @@
     /**
      * Sets the value of the workouts property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link WorkoutListT }
-     *     
+     *
      */
     public void setWorkouts(WorkoutListT value) {
@@ -137,9 +137,9 @@
     /**
      * Gets the value of the courses property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link CourseListT }
-     *     
+     *
      */
     public CourseListT getCourses() {
@@ -149,9 +149,9 @@
     /**
      * Sets the value of the courses property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link CourseListT }
-     *     
+     *
      */
     public void setCourses(CourseListT value) {
@@ -161,9 +161,9 @@
     /**
      * Gets the value of the author property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link AbstractSourceT }
-     *     
+     *
      */
     public AbstractSourceT getAuthor() {
@@ -173,9 +173,9 @@
     /**
      * Sets the value of the author property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link AbstractSourceT }
-     *     
+     *
      */
     public void setAuthor(AbstractSourceT value) {
@@ -185,9 +185,9 @@
     /**
      * Gets the value of the extensions property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link ExtensionsT }
-     *     
+     *
      */
     public ExtensionsT getExtensions() {
@@ -197,9 +197,9 @@
     /**
      * Sets the value of the extensions property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link ExtensionsT }
-     *     
+     *
      */
     public void setExtensions(ExtensionsT value) {
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/TrainingT.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/TrainingT.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/TrainingT.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
@@ -18,7 +18,7 @@
 /**
  * <p>Java class for Training_t complex type.
- * 
+ *
  * <p>The following schema fragment specifies the expected content contained within this class.
- * 
+ *
  * <pre>
  * &lt;complexType name="Training_t">
@@ -34,6 +34,6 @@
  * &lt;/complexType>
  * </pre>
- * 
- * 
+ *
+ *
  */
 @XmlAccessorType(XmlAccessType.FIELD)
@@ -53,9 +53,9 @@
     /**
      * Gets the value of the quickWorkoutResults property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link QuickWorkoutT }
-     *     
+     *
      */
     public QuickWorkoutT getQuickWorkoutResults() {
@@ -65,9 +65,9 @@
     /**
      * Sets the value of the quickWorkoutResults property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link QuickWorkoutT }
-     *     
+     *
      */
     public void setQuickWorkoutResults(QuickWorkoutT value) {
@@ -77,9 +77,9 @@
     /**
      * Gets the value of the plan property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link PlanT }
-     *     
+     *
      */
     public PlanT getPlan() {
@@ -89,9 +89,9 @@
     /**
      * Sets the value of the plan property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link PlanT }
-     *     
+     *
      */
     public void setPlan(PlanT value) {
@@ -101,5 +101,5 @@
     /**
      * Gets the value of the virtualPartner property.
-     * 
+     *
      */
     public boolean isVirtualPartner() {
@@ -109,5 +109,5 @@
     /**
      * Sets the value of the virtualPartner property.
-     * 
+     *
      */
     public void setVirtualPartner(boolean value) {
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/TrainingTypeT.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/TrainingTypeT.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/TrainingTypeT.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
@@ -16,5 +16,5 @@
 /**
  * <p>Java class for TrainingType_t.
- * 
+ *
  * <p>The following schema fragment specifies the expected content contained within this class.
  * <p>
@@ -27,5 +27,5 @@
  * &lt;/simpleType>
  * </pre>
- * 
+ *
  */
 @XmlType(name = "TrainingType_t")
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/TriggerMethodT.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/TriggerMethodT.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/TriggerMethodT.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
@@ -16,5 +16,5 @@
 /**
  * <p>Java class for TriggerMethod_t.
- * 
+ *
  * <p>The following schema fragment specifies the expected content contained within this class.
  * <p>
@@ -30,5 +30,5 @@
  * &lt;/simpleType>
  * </pre>
- * 
+ *
  */
 @XmlType(name = "TriggerMethod_t")
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/UserInitiatedT.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/UserInitiatedT.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/UserInitiatedT.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
@@ -16,7 +16,7 @@
 /**
  * <p>Java class for UserInitiated_t complex type.
- * 
+ *
  * <p>The following schema fragment specifies the expected content contained within this class.
- * 
+ *
  * <pre>
  * &lt;complexType name="UserInitiated_t">
@@ -27,6 +27,6 @@
  * &lt;/complexType>
  * </pre>
- * 
- * 
+ *
+ *
  */
 @XmlAccessorType(XmlAccessType.FIELD)
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/VersionT.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/VersionT.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/VersionT.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
@@ -18,7 +18,7 @@
 /**
  * <p>Java class for Version_t complex type.
- * 
+ *
  * <p>The following schema fragment specifies the expected content contained within this class.
- * 
+ *
  * <pre>
  * &lt;complexType name="Version_t">
@@ -35,6 +35,6 @@
  * &lt;/complexType>
  * </pre>
- * 
- * 
+ *
+ *
  */
 @XmlAccessorType(XmlAccessType.FIELD)
@@ -62,5 +62,5 @@
     /**
      * Gets the value of the versionMajor property.
-     * 
+     *
      */
     public int getVersionMajor() {
@@ -70,5 +70,5 @@
     /**
      * Sets the value of the versionMajor property.
-     * 
+     *
      */
     public void setVersionMajor(int value) {
@@ -78,5 +78,5 @@
     /**
      * Gets the value of the versionMinor property.
-     * 
+     *
      */
     public int getVersionMinor() {
@@ -86,5 +86,5 @@
     /**
      * Sets the value of the versionMinor property.
-     * 
+     *
      */
     public void setVersionMinor(int value) {
@@ -94,9 +94,9 @@
     /**
      * Gets the value of the buildMajor property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link Integer }
-     *     
+     *
      */
     public Integer getBuildMajor() {
@@ -106,9 +106,9 @@
     /**
      * Sets the value of the buildMajor property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link Integer }
-     *     
+     *
      */
     public void setBuildMajor(Integer value) {
@@ -118,9 +118,9 @@
     /**
      * Gets the value of the buildMinor property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link Integer }
-     *     
+     *
      */
     public Integer getBuildMinor() {
@@ -130,9 +130,9 @@
     /**
      * Sets the value of the buildMinor property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link Integer }
-     *     
+     *
      */
     public void setBuildMinor(Integer value) {
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/WeekT.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/WeekT.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/WeekT.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
@@ -20,7 +20,7 @@
 /**
  * <p>Java class for Week_t complex type.
- * 
+ *
  * <p>The following schema fragment specifies the expected content contained within this class.
- * 
+ *
  * <pre>
  * &lt;complexType name="Week_t">
@@ -35,6 +35,6 @@
  * &lt;/complexType>
  * </pre>
- * 
- * 
+ *
+ *
  */
 @XmlAccessorType(XmlAccessType.FIELD)
@@ -52,9 +52,9 @@
     /**
      * Gets the value of the notes property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link String }
-     *     
+     *
      */
     public String getNotes() {
@@ -64,9 +64,9 @@
     /**
      * Sets the value of the notes property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link String }
-     *     
+     *
      */
     public void setNotes(String value) {
@@ -76,9 +76,9 @@
     /**
      * Gets the value of the startDay property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link XMLGregorianCalendar }
-     *     
+     *
      */
     public XMLGregorianCalendar getStartDay() {
@@ -88,9 +88,9 @@
     /**
      * Sets the value of the startDay property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link XMLGregorianCalendar }
-     *     
+     *
      */
     public void setStartDay(XMLGregorianCalendar value) {
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/WorkoutFolderT.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/WorkoutFolderT.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/WorkoutFolderT.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
@@ -20,7 +20,7 @@
 /**
  * <p>Java class for WorkoutFolder_t complex type.
- * 
+ *
  * <p>The following schema fragment specifies the expected content contained within this class.
- * 
+ *
  * <pre>
  * &lt;complexType name="WorkoutFolder_t">
@@ -37,6 +37,6 @@
  * &lt;/complexType>
  * </pre>
- * 
- * 
+ *
+ *
  */
 @XmlAccessorType(XmlAccessType.FIELD)
@@ -59,5 +59,5 @@
     /**
      * Gets the value of the folder property.
-     * 
+     *
      * <p>
      * This accessor method returns a reference to the live list,
@@ -65,5 +65,5 @@
      * returned list will be present inside the JAXB object.
      * This is why there is not a <CODE>set</CODE> method for the folder property.
-     * 
+     *
      * <p>
      * For example, to add a new item, do as follows:
@@ -71,11 +71,11 @@
      *    getFolder().add(newItem);
      * </pre>
-     * 
-     * 
+     *
+     *
      * <p>
      * Objects of the following type(s) are allowed in the list
      * {@link WorkoutFolderT }
-     * 
-     * 
+     *
+     *
      */
     public List<WorkoutFolderT> getFolder() {
@@ -88,5 +88,5 @@
     /**
      * Gets the value of the workoutNameRef property.
-     * 
+     *
      * <p>
      * This accessor method returns a reference to the live list,
@@ -94,5 +94,5 @@
      * returned list will be present inside the JAXB object.
      * This is why there is not a <CODE>set</CODE> method for the workoutNameRef property.
-     * 
+     *
      * <p>
      * For example, to add a new item, do as follows:
@@ -100,11 +100,11 @@
      *    getWorkoutNameRef().add(newItem);
      * </pre>
-     * 
-     * 
+     *
+     *
      * <p>
      * Objects of the following type(s) are allowed in the list
      * {@link NameKeyReferenceT }
-     * 
-     * 
+     *
+     *
      */
     public List<NameKeyReferenceT> getWorkoutNameRef() {
@@ -117,9 +117,9 @@
     /**
      * Gets the value of the extensions property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link ExtensionsT }
-     *     
+     *
      */
     public ExtensionsT getExtensions() {
@@ -129,9 +129,9 @@
     /**
      * Sets the value of the extensions property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link ExtensionsT }
-     *     
+     *
      */
     public void setExtensions(ExtensionsT value) {
@@ -141,9 +141,9 @@
     /**
      * Gets the value of the name property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link String }
-     *     
+     *
      */
     public String getName() {
@@ -153,9 +153,9 @@
     /**
      * Sets the value of the name property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link String }
-     *     
+     *
      */
     public void setName(String value) {
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/WorkoutListT.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/WorkoutListT.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/WorkoutListT.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
@@ -19,7 +19,7 @@
 /**
  * <p>Java class for WorkoutList_t complex type.
- * 
+ *
  * <p>The following schema fragment specifies the expected content contained within this class.
- * 
+ *
  * <pre>
  * &lt;complexType name="WorkoutList_t">
@@ -33,6 +33,6 @@
  * &lt;/complexType>
  * </pre>
- * 
- * 
+ *
+ *
  */
 @XmlAccessorType(XmlAccessType.FIELD)
@@ -47,5 +47,5 @@
     /**
      * Gets the value of the workout property.
-     * 
+     *
      * <p>
      * This accessor method returns a reference to the live list,
@@ -53,5 +53,5 @@
      * returned list will be present inside the JAXB object.
      * This is why there is not a <CODE>set</CODE> method for the workout property.
-     * 
+     *
      * <p>
      * For example, to add a new item, do as follows:
@@ -59,11 +59,11 @@
      *    getWorkout().add(newItem);
      * </pre>
-     * 
-     * 
+     *
+     *
      * <p>
      * Objects of the following type(s) are allowed in the list
      * {@link WorkoutT }
-     * 
-     * 
+     *
+     *
      */
     public List<WorkoutT> getWorkout() {
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/WorkoutT.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/WorkoutT.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/WorkoutT.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
@@ -24,7 +24,7 @@
 /**
  * <p>Java class for Workout_t complex type.
- * 
+ *
  * <p>The following schema fragment specifies the expected content contained within this class.
- * 
+ *
  * <pre>
  * &lt;complexType name="Workout_t">
@@ -44,6 +44,6 @@
  * &lt;/complexType>
  * </pre>
- * 
- * 
+ *
+ *
  */
 @XmlAccessorType(XmlAccessType.FIELD)
@@ -77,9 +77,9 @@
     /**
      * Gets the value of the name property.
-     * 
-     * @return
-     *     possible object is
-     *     {@link String }
-     *     
+     *
+     * @return
+     *     possible object is
+     *     {@link String }
+     *
      */
     public String getName() {
@@ -89,9 +89,9 @@
     /**
      * Sets the value of the name property.
-     * 
-     * @param value
-     *     allowed object is
-     *     {@link String }
-     *     
+     *
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *
      */
     public void setName(String value) {
@@ -101,5 +101,5 @@
     /**
      * Gets the value of the step property.
-     * 
+     *
      * <p>
      * This accessor method returns a reference to the live list,
@@ -107,5 +107,5 @@
      * returned list will be present inside the JAXB object.
      * This is why there is not a <CODE>set</CODE> method for the step property.
-     * 
+     *
      * <p>
      * For example, to add a new item, do as follows:
@@ -113,11 +113,11 @@
      *    getStep().add(newItem);
      * </pre>
-     * 
-     * 
+     *
+     *
      * <p>
      * Objects of the following type(s) are allowed in the list
      * {@link AbstractStepT }
-     * 
-     * 
+     *
+     *
      */
     public List<AbstractStepT> getStep() {
@@ -130,5 +130,5 @@
     /**
      * Gets the value of the scheduledOn property.
-     * 
+     *
      * <p>
      * This accessor method returns a reference to the live list,
@@ -136,5 +136,5 @@
      * returned list will be present inside the JAXB object.
      * This is why there is not a <CODE>set</CODE> method for the scheduledOn property.
-     * 
+     *
      * <p>
      * For example, to add a new item, do as follows:
@@ -142,11 +142,11 @@
      *    getScheduledOn().add(newItem);
      * </pre>
-     * 
-     * 
+     *
+     *
      * <p>
      * Objects of the following type(s) are allowed in the list
      * {@link XMLGregorianCalendar }
-     * 
-     * 
+     *
+     *
      */
     public List<XMLGregorianCalendar> getScheduledOn() {
@@ -159,9 +159,9 @@
     /**
      * Gets the value of the notes property.
-     * 
-     * @return
-     *     possible object is
-     *     {@link String }
-     *     
+     *
+     * @return
+     *     possible object is
+     *     {@link String }
+     *
      */
     public String getNotes() {
@@ -171,9 +171,9 @@
     /**
      * Sets the value of the notes property.
-     * 
-     * @param value
-     *     allowed object is
-     *     {@link String }
-     *     
+     *
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *
      */
     public void setNotes(String value) {
@@ -183,9 +183,9 @@
     /**
      * Gets the value of the creator property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link AbstractSourceT }
-     *     
+     *
      */
     public AbstractSourceT getCreator() {
@@ -195,9 +195,9 @@
     /**
      * Sets the value of the creator property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link AbstractSourceT }
-     *     
+     *
      */
     public void setCreator(AbstractSourceT value) {
@@ -207,9 +207,9 @@
     /**
      * Gets the value of the extensions property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link ExtensionsT }
-     *     
+     *
      */
     public ExtensionsT getExtensions() {
@@ -219,9 +219,9 @@
     /**
      * Sets the value of the extensions property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link ExtensionsT }
-     *     
+     *
      */
     public void setExtensions(ExtensionsT value) {
@@ -231,9 +231,9 @@
     /**
      * Gets the value of the sport property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link SportT }
-     *     
+     *
      */
     public SportT getSport() {
@@ -243,9 +243,9 @@
     /**
      * Sets the value of the sport property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link SportT }
-     *     
+     *
      */
     public void setSport(SportT value) {
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/WorkoutsT.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/WorkoutsT.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/WorkoutsT.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
@@ -17,7 +17,7 @@
 /**
  * <p>Java class for Workouts_t complex type.
- * 
+ *
  * <p>The following schema fragment specifies the expected content contained within this class.
- * 
+ *
  * <pre>
  * &lt;complexType name="Workouts_t">
@@ -34,6 +34,6 @@
  * &lt;/complexType>
  * </pre>
- * 
- * 
+ *
+ *
  */
 @XmlAccessorType(XmlAccessType.FIELD)
@@ -57,9 +57,9 @@
     /**
      * Gets the value of the running property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link WorkoutFolderT }
-     *     
+     *
      */
     public WorkoutFolderT getRunning() {
@@ -69,9 +69,9 @@
     /**
      * Sets the value of the running property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link WorkoutFolderT }
-     *     
+     *
      */
     public void setRunning(WorkoutFolderT value) {
@@ -81,9 +81,9 @@
     /**
      * Gets the value of the biking property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link WorkoutFolderT }
-     *     
+     *
      */
     public WorkoutFolderT getBiking() {
@@ -93,9 +93,9 @@
     /**
      * Sets the value of the biking property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link WorkoutFolderT }
-     *     
+     *
      */
     public void setBiking(WorkoutFolderT value) {
@@ -105,9 +105,9 @@
     /**
      * Gets the value of the other property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link WorkoutFolderT }
-     *     
+     *
      */
     public WorkoutFolderT getOther() {
@@ -117,9 +117,9 @@
     /**
      * Sets the value of the other property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link WorkoutFolderT }
-     *     
+     *
      */
     public void setOther(WorkoutFolderT value) {
@@ -129,9 +129,9 @@
     /**
      * Gets the value of the extensions property.
-     * 
+     *
      * @return
      *     possible object is
      *     {@link ExtensionsT }
-     *     
+     *
      */
     public ExtensionsT getExtensions() {
@@ -141,9 +141,9 @@
     /**
      * Sets the value of the extensions property.
-     * 
+     *
      * @param value
      *     allowed object is
      *     {@link ExtensionsT }
-     *     
+     *
      */
     public void setExtensions(ExtensionsT value) {
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/ZoneT.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/ZoneT.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/ZoneT.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
@@ -17,7 +17,7 @@
 /**
  * <p>Java class for Zone_t complex type.
- * 
+ *
  * <p>The following schema fragment specifies the expected content contained within this class.
- * 
+ *
  * <pre>
  * &lt;complexType name="Zone_t">
@@ -28,6 +28,6 @@
  * &lt;/complexType>
  * </pre>
- * 
- * 
+ *
+ *
  */
 @XmlAccessorType(XmlAccessType.FIELD)
Index: applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/package-info.java
===================================================================
--- applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/package-info.java	(revision 22542)
+++ applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/package-info.java	(revision 23191)
@@ -1,7 +1,7 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
-// Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.08.10 at 10:24:05 AM CEST 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2008.08.10 at 10:24:05 AM CEST
 //
 
