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