Ignore:
Timestamp:
2010-09-15T18:56:19+02:00 (14 years ago)
Author:
stoecker
Message:

remove tabs

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  
    1111public class SingleSegmentGpxTrack implements GpxTrack {
    1212
    13         private final Map<String, Object> attributes;
    14         private final GpxTrackSegment trackSegment;
     13    private final Map<String, Object> attributes;
     14    private final GpxTrackSegment trackSegment;
    1515
    16         public SingleSegmentGpxTrack(GpxTrackSegment trackSegment, Map<String, Object> attributes) {
    17                 this.attributes = Collections.unmodifiableMap(attributes);
    18                 this.trackSegment = trackSegment;
    19         }
     16    public SingleSegmentGpxTrack(GpxTrackSegment trackSegment, Map<String, Object> attributes) {
     17        this.attributes = Collections.unmodifiableMap(attributes);
     18        this.trackSegment = trackSegment;
     19    }
    2020
    2121
    22         public Map<String, Object> getAttributes() {
    23                 return attributes;
    24         }
     22    public Map<String, Object> getAttributes() {
     23        return attributes;
     24    }
    2525
    26         public Bounds getBounds() {
    27                 return trackSegment.getBounds();
    28         }
     26    public Bounds getBounds() {
     27        return trackSegment.getBounds();
     28    }
    2929
    30         public Collection<GpxTrackSegment> getSegments() {
    31                 return Collections.singleton(trackSegment);
    32         }
     30    public Collection<GpxTrackSegment> getSegments() {
     31        return Collections.singleton(trackSegment);
     32    }
    3333
    34         public double length() {
    35                 return trackSegment.length();
    36         }
     34    public double length() {
     35        return trackSegment.length();
     36    }
    3737
    38         @Override
    39         public int getUpdateCount() {
    40                 return trackSegment.getUpdateCount();
    41         }
     38    @Override
     39    public int getUpdateCount() {
     40        return trackSegment.getUpdateCount();
     41    }
    4242
    4343}
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/TangoGPS.java

    r22542 r23191  
    3434public class TangoGPS extends FileImporter {
    3535
    36         public TangoGPS() {
    37                 super(new ExtensionFileFilter("log", "log",tr("TangoGPS Files (*.log)")));
    38         }
     36    public TangoGPS() {
     37        super(new ExtensionFileFilter("log", "log",tr("TangoGPS Files (*.log)")));
     38    }
    3939
    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>();
     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>();
    5151
    52                 int imported = 0;
    53                 int failure = 0;
     52        int imported = 0;
     53        int failure = 0;
    5454
    55                 BufferedReader rd = null;
    56                 try {
    57                         InputStream source = new FileInputStream(file);
    58                         rd = new BufferedReader(new InputStreamReader(source));
     55        BufferedReader rd = null;
     56        try {
     57            InputStream source = new FileInputStream(file);
     58            rd = new BufferedReader(new InputStreamReader(source));
    5959
    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         }
     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    }
    100100
    101         private double parseCoord(String s) {
    102                 return Double.parseDouble(s);
    103         }
     101    private double parseCoord(String s) {
     102        return Double.parseDouble(s);
     103    }
    104104
    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         }
     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    }
    111111
    112112    private void showInfobox(int success,int failure) {
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/Tcx.java

    r19681 r23191  
    119119
    120120    /** Convert a TrackpointT to a WayPoint.
    121      * @param tp        TrackpointT to convert
    122      * @return          tp converted to WayPoint, or null
     121     * @param tp    TrackpointT to convert
     122     * @return      tp converted to WayPoint, or null
    123123     */
    124124    private static WayPoint convertPoint(TrackpointT tp) {
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/AbstractSourceT.java

    r18063 r23191  
    11//
    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
    66//
    77
     
    2020/**
    2121 * <p>Java class for AbstractSource_t complex type.
    22  * 
     22 *
    2323 * <p>The following schema fragment specifies the expected content contained within this class.
    24  * 
     24 *
    2525 * <pre>
    2626 * &lt;complexType name="AbstractSource_t">
     
    3434 * &lt;/complexType>
    3535 * </pre>
    36  * 
    37  * 
     36 *
     37 *
    3838 */
    3939@XmlAccessorType(XmlAccessType.FIELD)
     
    5353    /**
    5454     * Gets the value of the name property.
    55      * 
     55     *
    5656     * @return
    5757     *     possible object is
    5858     *     {@link String }
    59      *     
     59     *
    6060     */
    6161    public String getName() {
     
    6565    /**
    6666     * Sets the value of the name property.
    67      * 
     67     *
    6868     * @param value
    6969     *     allowed object is
    7070     *     {@link String }
    71      *     
     71     *
    7272     */
    7373    public void setName(String value) {
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/AbstractStepT.java

    r18063 r23191  
    11//
    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
    66//
    77
     
    1818/**
    1919 * <p>Java class for AbstractStep_t complex type.
    20  * 
     20 *
    2121 * <p>The following schema fragment specifies the expected content contained within this class.
    22  * 
     22 *
    2323 * <pre>
    2424 * &lt;complexType name="AbstractStep_t">
     
    3232 * &lt;/complexType>
    3333 * </pre>
    34  * 
    35  * 
     34 *
     35 *
    3636 */
    3737@XmlAccessorType(XmlAccessType.FIELD)
     
    5050    /**
    5151     * Gets the value of the stepId property.
    52      * 
     52     *
    5353     */
    5454    public int getStepId() {
     
    5858    /**
    5959     * Sets the value of the stepId property.
    60      * 
     60     *
    6161     */
    6262    public void setStepId(int value) {
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/ActivityLapT.java

    r18063 r23191  
    11//
    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
    66//
    77
     
    2222/**
    2323 * <p>Java class for ActivityLap_t complex type.
    24  * 
     24 *
    2525 * <p>The following schema fragment specifies the expected content contained within this class.
    26  * 
     26 *
    2727 * <pre>
    2828 * &lt;complexType name="ActivityLap_t">
     
    4848 * &lt;/complexType>
    4949 * </pre>
    50  * 
    51  * 
     50 *
     51 *
    5252 */
    5353@XmlAccessorType(XmlAccessType.FIELD)
     
    9999    /**
    100100     * Gets the value of the totalTimeSeconds property.
    101      * 
     101     *
    102102     */
    103103    public double getTotalTimeSeconds() {
     
    107107    /**
    108108     * Sets the value of the totalTimeSeconds property.
    109      * 
     109     *
    110110     */
    111111    public void setTotalTimeSeconds(double value) {
     
    115115    /**
    116116     * Gets the value of the distanceMeters property.
    117      * 
     117     *
    118118     */
    119119    public double getDistanceMeters() {
     
    123123    /**
    124124     * Sets the value of the distanceMeters property.
    125      * 
     125     *
    126126     */
    127127    public void setDistanceMeters(double value) {
     
    131131    /**
    132132     * Gets the value of the maximumSpeed property.
    133      * 
     133     *
    134134     * @return
    135135     *     possible object is
    136136     *     {@link Double }
    137      *     
     137     *
    138138     */
    139139    public Double getMaximumSpeed() {
     
    143143    /**
    144144     * Sets the value of the maximumSpeed property.
    145      * 
     145     *
    146146     * @param value
    147147     *     allowed object is
    148148     *     {@link Double }
    149      *     
     149     *
    150150     */
    151151    public void setMaximumSpeed(Double value) {
     
    155155    /**
    156156     * Gets the value of the calories property.
    157      * 
     157     *
    158158     */
    159159    public int getCalories() {
     
    163163    /**
    164164     * Sets the value of the calories property.
    165      * 
     165     *
    166166     */
    167167    public void setCalories(int value) {
     
    171171    /**
    172172     * Gets the value of the averageHeartRateBpm property.
    173      * 
     173     *
    174174     * @return
    175175     *     possible object is
    176176     *     {@link HeartRateInBeatsPerMinuteT }
    177      *     
     177     *
    178178     */
    179179    public HeartRateInBeatsPerMinuteT getAverageHeartRateBpm() {
     
    183183    /**
    184184     * Sets the value of the averageHeartRateBpm property.
    185      * 
     185     *
    186186     * @param value
    187187     *     allowed object is
    188188     *     {@link HeartRateInBeatsPerMinuteT }
    189      *     
     189     *
    190190     */
    191191    public void setAverageHeartRateBpm(HeartRateInBeatsPerMinuteT value) {
     
    195195    /**
    196196     * Gets the value of the maximumHeartRateBpm property.
    197      * 
     197     *
    198198     * @return
    199199     *     possible object is
    200200     *     {@link HeartRateInBeatsPerMinuteT }
    201      *     
     201     *
    202202     */
    203203    public HeartRateInBeatsPerMinuteT getMaximumHeartRateBpm() {
     
    207207    /**
    208208     * Sets the value of the maximumHeartRateBpm property.
    209      * 
     209     *
    210210     * @param value
    211211     *     allowed object is
    212212     *     {@link HeartRateInBeatsPerMinuteT }
    213      *     
     213     *
    214214     */
    215215    public void setMaximumHeartRateBpm(HeartRateInBeatsPerMinuteT value) {
     
    219219    /**
    220220     * Gets the value of the intensity property.
    221      * 
     221     *
    222222     * @return
    223223     *     possible object is
    224224     *     {@link IntensityT }
    225      *     
     225     *
    226226     */
    227227    public IntensityT getIntensity() {
     
    231231    /**
    232232     * Sets the value of the intensity property.
    233      * 
     233     *
    234234     * @param value
    235235     *     allowed object is
    236236     *     {@link IntensityT }
    237      *     
     237     *
    238238     */
    239239    public void setIntensity(IntensityT value) {
     
    243243    /**
    244244     * Gets the value of the cadence property.
    245      * 
     245     *
    246246     * @return
    247247     *     possible object is
    248248     *     {@link Short }
    249      *     
     249     *
    250250     */
    251251    public Short getCadence() {
     
    255255    /**
    256256     * Sets the value of the cadence property.
    257      * 
     257     *
    258258     * @param value
    259259     *     allowed object is
    260260     *     {@link Short }
    261      *     
     261     *
    262262     */
    263263    public void setCadence(Short value) {
     
    267267    /**
    268268     * Gets the value of the triggerMethod property.
    269      * 
     269     *
    270270     * @return
    271271     *     possible object is
    272272     *     {@link TriggerMethodT }
    273      *     
     273     *
    274274     */
    275275    public TriggerMethodT getTriggerMethod() {
     
    279279    /**
    280280     * Sets the value of the triggerMethod property.
    281      * 
     281     *
    282282     * @param value
    283283     *     allowed object is
    284284     *     {@link TriggerMethodT }
    285      *     
     285     *
    286286     */
    287287    public void setTriggerMethod(TriggerMethodT value) {
     
    291291    /**
    292292     * Gets the value of the track property.
    293      * 
     293     *
    294294     * <p>
    295295     * This accessor method returns a reference to the live list,
     
    297297     * returned list will be present inside the JAXB object.
    298298     * This is why there is not a <CODE>set</CODE> method for the track property.
    299      * 
     299     *
    300300     * <p>
    301301     * For example, to add a new item, do as follows:
     
    303303     *    getTrack().add(newItem);
    304304     * </pre>
    305      * 
    306      * 
     305     *
     306     *
    307307     * <p>
    308308     * Objects of the following type(s) are allowed in the list
    309309     * {@link TrackT }
    310      * 
    311      * 
     310     *
     311     *
    312312     */
    313313    public List<TrackT> getTrack() {
     
    320320    /**
    321321     * Gets the value of the notes property.
    322      * 
     322     *
    323323     * @return
    324324     *     possible object is
    325325     *     {@link String }
    326      *     
     326     *
    327327     */
    328328    public String getNotes() {
     
    332332    /**
    333333     * Sets the value of the notes property.
    334      * 
     334     *
    335335     * @param value
    336336     *     allowed object is
    337337     *     {@link String }
    338      *     
     338     *
    339339     */
    340340    public void setNotes(String value) {
     
    344344    /**
    345345     * Gets the value of the extensions property.
    346      * 
     346     *
    347347     * @return
    348348     *     possible object is
    349349     *     {@link ExtensionsT }
    350      *     
     350     *
    351351     */
    352352    public ExtensionsT getExtensions() {
     
    356356    /**
    357357     * Sets the value of the extensions property.
    358      * 
     358     *
    359359     * @param value
    360360     *     allowed object is
    361361     *     {@link ExtensionsT }
    362      *     
     362     *
    363363     */
    364364    public void setExtensions(ExtensionsT value) {
     
    368368    /**
    369369     * Gets the value of the startTime property.
    370      * 
     370     *
    371371     * @return
    372372     *     possible object is
    373373     *     {@link XMLGregorianCalendar }
    374      *     
     374     *
    375375     */
    376376    public XMLGregorianCalendar getStartTime() {
     
    380380    /**
    381381     * Sets the value of the startTime property.
    382      * 
     382     *
    383383     * @param value
    384384     *     allowed object is
    385385     *     {@link XMLGregorianCalendar }
    386      *     
     386     *
    387387     */
    388388    public void setStartTime(XMLGregorianCalendar value) {
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/ActivityListT.java

    r18063 r23191  
    11//
    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
    66//
    77
     
    1919/**
    2020 * <p>Java class for ActivityList_t complex type.
    21  * 
     21 *
    2222 * <p>The following schema fragment specifies the expected content contained within this class.
    23  * 
     23 *
    2424 * <pre>
    2525 * &lt;complexType name="ActivityList_t">
     
    3434 * &lt;/complexType>
    3535 * </pre>
    36  * 
    37  * 
     36 *
     37 *
    3838 */
    3939@XmlAccessorType(XmlAccessType.FIELD)
     
    5151    /**
    5252     * Gets the value of the activity property.
    53      * 
     53     *
    5454     * <p>
    5555     * This accessor method returns a reference to the live list,
     
    5757     * returned list will be present inside the JAXB object.
    5858     * This is why there is not a <CODE>set</CODE> method for the activity property.
    59      * 
     59     *
    6060     * <p>
    6161     * For example, to add a new item, do as follows:
     
    6363     *    getActivity().add(newItem);
    6464     * </pre>
    65      * 
    66      * 
     65     *
     66     *
    6767     * <p>
    6868     * Objects of the following type(s) are allowed in the list
    6969     * {@link ActivityT }
    70      * 
    71      * 
     70     *
     71     *
    7272     */
    7373    public List<ActivityT> getActivity() {
     
    8080    /**
    8181     * Gets the value of the multiSportSession property.
    82      * 
     82     *
    8383     * <p>
    8484     * This accessor method returns a reference to the live list,
     
    8686     * returned list will be present inside the JAXB object.
    8787     * This is why there is not a <CODE>set</CODE> method for the multiSportSession property.
    88      * 
     88     *
    8989     * <p>
    9090     * For example, to add a new item, do as follows:
     
    9292     *    getMultiSportSession().add(newItem);
    9393     * </pre>
    94      * 
    95      * 
     94     *
     95     *
    9696     * <p>
    9797     * Objects of the following type(s) are allowed in the list
    9898     * {@link MultiSportSessionT }
    99      * 
    100      * 
     99     *
     100     *
    101101     */
    102102    public List<MultiSportSessionT> getMultiSportSession() {
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/ActivityReferenceT.java

    r18063 r23191  
    11//
    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
    66//
    77
     
    1919/**
    2020 * <p>Java class for ActivityReference_t complex type.
    21  * 
     21 *
    2222 * <p>The following schema fragment specifies the expected content contained within this class.
    23  * 
     23 *
    2424 * <pre>
    2525 * &lt;complexType name="ActivityReference_t">
     
    3333 * &lt;/complexType>
    3434 * </pre>
    35  * 
    36  * 
     35 *
     36 *
    3737 */
    3838@XmlAccessorType(XmlAccessType.FIELD)
     
    4848    /**
    4949     * Gets the value of the id property.
    50      * 
     50     *
    5151     * @return
    5252     *     possible object is
    5353     *     {@link XMLGregorianCalendar }
    54      *     
     54     *
    5555     */
    5656    public XMLGregorianCalendar getId() {
     
    6060    /**
    6161     * Sets the value of the id property.
    62      * 
     62     *
    6363     * @param value
    6464     *     allowed object is
    6565     *     {@link XMLGregorianCalendar }
    66      *     
     66     *
    6767     */
    6868    public void setId(XMLGregorianCalendar value) {
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/ActivityT.java

    r18063 r23191  
    11//
    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
    66//
    77
     
    2222/**
    2323 * <p>Java class for Activity_t complex type.
    24  * 
     24 *
    2525 * <p>The following schema fragment specifies the expected content contained within this class.
    26  * 
     26 *
    2727 * <pre>
    2828 * &lt;complexType name="Activity_t">
     
    4242 * &lt;/complexType>
    4343 * </pre>
    44  * 
    45  * 
     44 *
     45 *
    4646 */
    4747@XmlAccessorType(XmlAccessType.FIELD)
     
    7474    /**
    7575     * Gets the value of the id property.
    76      * 
     76     *
    7777     * @return
    7878     *     possible object is
    7979     *     {@link XMLGregorianCalendar }
    80      *     
     80     *
    8181     */
    8282    public XMLGregorianCalendar getId() {
     
    8686    /**
    8787     * Sets the value of the id property.
    88      * 
     88     *
    8989     * @param value
    9090     *     allowed object is
    9191     *     {@link XMLGregorianCalendar }
    92      *     
     92     *
    9393     */
    9494    public void setId(XMLGregorianCalendar value) {
     
    9898    /**
    9999     * Gets the value of the lap property.
    100      * 
     100     *
    101101     * <p>
    102102     * This accessor method returns a reference to the live list,
     
    104104     * returned list will be present inside the JAXB object.
    105105     * This is why there is not a <CODE>set</CODE> method for the lap property.
    106      * 
     106     *
    107107     * <p>
    108108     * For example, to add a new item, do as follows:
     
    110110     *    getLap().add(newItem);
    111111     * </pre>
    112      * 
    113      * 
     112     *
     113     *
    114114     * <p>
    115115     * Objects of the following type(s) are allowed in the list
    116116     * {@link ActivityLapT }
    117      * 
    118      * 
     117     *
     118     *
    119119     */
    120120    public List<ActivityLapT> getLap() {
     
    127127    /**
    128128     * Gets the value of the notes property.
    129      * 
     129     *
    130130     * @return
    131131     *     possible object is
    132132     *     {@link String }
    133      *     
     133     *
    134134     */
    135135    public String getNotes() {
     
    139139    /**
    140140     * Sets the value of the notes property.
    141      * 
     141     *
    142142     * @param value
    143143     *     allowed object is
    144144     *     {@link String }
    145      *     
     145     *
    146146     */
    147147    public void setNotes(String value) {
     
    151151    /**
    152152     * Gets the value of the training property.
    153      * 
     153     *
    154154     * @return
    155155     *     possible object is
    156156     *     {@link TrainingT }
    157      *     
     157     *
    158158     */
    159159    public TrainingT getTraining() {
     
    163163    /**
    164164     * Sets the value of the training property.
    165      * 
     165     *
    166166     * @param value
    167167     *     allowed object is
    168168     *     {@link TrainingT }
    169      *     
     169     *
    170170     */
    171171    public void setTraining(TrainingT value) {
     
    175175    /**
    176176     * Gets the value of the creator property.
    177      * 
     177     *
    178178     * @return
    179179     *     possible object is
    180180     *     {@link AbstractSourceT }
    181      *     
     181     *
    182182     */
    183183    public AbstractSourceT getCreator() {
     
    187187    /**
    188188     * Sets the value of the creator property.
    189      * 
     189     *
    190190     * @param value
    191191     *     allowed object is
    192192     *     {@link AbstractSourceT }
    193      *     
     193     *
    194194     */
    195195    public void setCreator(AbstractSourceT value) {
     
    199199    /**
    200200     * Gets the value of the extensions property.
    201      * 
     201     *
    202202     * @return
    203203     *     possible object is
    204204     *     {@link ExtensionsT }
    205      *     
     205     *
    206206     */
    207207    public ExtensionsT getExtensions() {
     
    211211    /**
    212212     * Sets the value of the extensions property.
    213      * 
     213     *
    214214     * @param value
    215215     *     allowed object is
    216216     *     {@link ExtensionsT }
    217      *     
     217     *
    218218     */
    219219    public void setExtensions(ExtensionsT value) {
     
    223223    /**
    224224     * Gets the value of the sport property.
    225      * 
     225     *
    226226     * @return
    227227     *     possible object is
    228228     *     {@link SportT }
    229      *     
     229     *
    230230     */
    231231    public SportT getSport() {
     
    235235    /**
    236236     * Sets the value of the sport property.
    237      * 
     237     *
    238238     * @param value
    239239     *     allowed object is
    240240     *     {@link SportT }
    241      *     
     241     *
    242242     */
    243243    public void setSport(SportT value) {
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/ApplicationT.java

    r18063 r23191  
    11//
    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
    66//
    77
     
    1919/**
    2020 * Identifies a PC software application.
    21  * 
     21 *
    2222 * <p>Java class for Application_t complex type.
    23  * 
     23 *
    2424 * <p>The following schema fragment specifies the expected content contained within this class.
    25  * 
     25 *
    2626 * <pre>
    2727 * &lt;complexType name="Application_t">
     
    3737 * &lt;/complexType>
    3838 * </pre>
    39  * 
    40  * 
     39 *
     40 *
    4141 */
    4242@XmlAccessorType(XmlAccessType.FIELD)
     
    6161    /**
    6262     * Gets the value of the build property.
    63      * 
     63     *
    6464     * @return
    6565     *     possible object is
    6666     *     {@link BuildT }
    67      *     
     67     *
    6868     */
    6969    public BuildT getBuild() {
     
    7373    /**
    7474     * Sets the value of the build property.
    75      * 
     75     *
    7676     * @param value
    7777     *     allowed object is
    7878     *     {@link BuildT }
    79      *     
     79     *
    8080     */
    8181    public void setBuild(BuildT value) {
     
    8585    /**
    8686     * Gets the value of the langID property.
    87      * 
     87     *
    8888     * @return
    8989     *     possible object is
    9090     *     {@link String }
    91      *     
     91     *
    9292     */
    9393    public String getLangID() {
     
    9797    /**
    9898     * Sets the value of the langID property.
    99      * 
     99     *
    100100     * @param value
    101101     *     allowed object is
    102102     *     {@link String }
    103      *     
     103     *
    104104     */
    105105    public void setLangID(String value) {
     
    109109    /**
    110110     * Gets the value of the partNumber property.
    111      * 
     111     *
    112112     * @return
    113113     *     possible object is
    114114     *     {@link String }
    115      *     
     115     *
    116116     */
    117117    public String getPartNumber() {
     
    121121    /**
    122122     * Sets the value of the partNumber property.
    123      * 
     123     *
    124124     * @param value
    125125     *     allowed object is
    126126     *     {@link String }
    127      *     
     127     *
    128128     */
    129129    public void setPartNumber(String value) {
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/BuildT.java

    r18063 r23191  
    11//
    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
    66//
    77
     
    1919/**
    2020 * <p>Java class for Build_t complex type.
    21  * 
     21 *
    2222 * <p>The following schema fragment specifies the expected content contained within this class.
    23  * 
     23 *
    2424 * <pre>
    2525 * &lt;complexType name="Build_t">
     
    3636 * &lt;/complexType>
    3737 * </pre>
    38  * 
    39  * 
     38 *
     39 *
    4040 */
    4141@XmlAccessorType(XmlAccessType.FIELD)
     
    6161    /**
    6262     * Gets the value of the version property.
    63      * 
     63     *
    6464     * @return
    6565     *     possible object is
    6666     *     {@link VersionT }
    67      *     
     67     *
    6868     */
    6969    public VersionT getVersion() {
     
    7373    /**
    7474     * Sets the value of the version property.
    75      * 
     75     *
    7676     * @param value
    7777     *     allowed object is
    7878     *     {@link VersionT }
    79      *     
     79     *
    8080     */
    8181    public void setVersion(VersionT value) {
     
    8585    /**
    8686     * Gets the value of the type property.
    87      * 
     87     *
    8888     * @return
    8989     *     possible object is
    9090     *     {@link BuildTypeT }
    91      *     
     91     *
    9292     */
    9393    public BuildTypeT getType() {
     
    9797    /**
    9898     * Sets the value of the type property.
    99      * 
     99     *
    100100     * @param value
    101101     *     allowed object is
    102102     *     {@link BuildTypeT }
    103      *     
     103     *
    104104     */
    105105    public void setType(BuildTypeT value) {
     
    109109    /**
    110110     * Gets the value of the time property.
    111      * 
     111     *
    112112     * @return
    113113     *     possible object is
    114114     *     {@link String }
    115      *     
     115     *
    116116     */
    117117    public String getTime() {
     
    121121    /**
    122122     * Sets the value of the time property.
    123      * 
     123     *
    124124     * @param value
    125125     *     allowed object is
    126126     *     {@link String }
    127      *     
     127     *
    128128     */
    129129    public void setTime(String value) {
     
    133133    /**
    134134     * Gets the value of the builder property.
    135      * 
     135     *
    136136     * @return
    137137     *     possible object is
    138138     *     {@link String }
    139      *     
     139     *
    140140     */
    141141    public String getBuilder() {
     
    145145    /**
    146146     * Sets the value of the builder property.
    147      * 
     147     *
    148148     * @param value
    149149     *     allowed object is
    150150     *     {@link String }
    151      *     
     151     *
    152152     */
    153153    public void setBuilder(String value) {
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/BuildTypeT.java

    r18063 r23191  
    11//
    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
    66//
    77
     
    1616/**
    1717 * <p>Java class for BuildType_t.
    18  * 
     18 *
    1919 * <p>The following schema fragment specifies the expected content contained within this class.
    2020 * <p>
     
    2929 * &lt;/simpleType>
    3030 * </pre>
    31  * 
     31 *
    3232 */
    3333@XmlType(name = "BuildType_t")
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/CadenceT.java

    r18063 r23191  
    11//
    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
    66//
    77
     
    1717/**
    1818 * <p>Java class for Cadence_t complex type.
    19  * 
     19 *
    2020 * <p>The following schema fragment specifies the expected content contained within this class.
    21  * 
     21 *
    2222 * <pre>
    2323 * &lt;complexType name="Cadence_t">
     
    3232 * &lt;/complexType>
    3333 * </pre>
    34  * 
    35  * 
     34 *
     35 *
    3636 */
    3737@XmlAccessorType(XmlAccessType.FIELD)
     
    5151    /**
    5252     * Gets the value of the low property.
    53      * 
     53     *
    5454     */
    5555    public double getLow() {
     
    5959    /**
    6060     * Sets the value of the low property.
    61      * 
     61     *
    6262     */
    6363    public void setLow(double value) {
     
    6767    /**
    6868     * Gets the value of the high property.
    69      * 
     69     *
    7070     */
    7171    public double getHigh() {
     
    7575    /**
    7676     * Sets the value of the high property.
    77      * 
     77     *
    7878     */
    7979    public void setHigh(double value) {
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/CaloriesBurnedT.java

    r18063 r23191  
    11//
    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
    66//
    77
     
    1818/**
    1919 * <p>Java class for CaloriesBurned_t complex type.
    20  * 
     20 *
    2121 * <p>The following schema fragment specifies the expected content contained within this class.
    22  * 
     22 *
    2323 * <pre>
    2424 * &lt;complexType name="CaloriesBurned_t">
     
    3232 * &lt;/complexType>
    3333 * </pre>
    34  * 
    35  * 
     34 *
     35 *
    3636 */
    3737@XmlAccessorType(XmlAccessType.FIELD)
     
    4949    /**
    5050     * Gets the value of the calories property.
    51      * 
     51     *
    5252     */
    5353    public int getCalories() {
     
    5757    /**
    5858     * Sets the value of the calories property.
    59      * 
     59     *
    6060     */
    6161    public void setCalories(int value) {
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/CourseFolderT.java

    r18063 r23191  
    11//
    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
    66//
    77
     
    2020/**
    2121 * <p>Java class for CourseFolder_t complex type.
    22  * 
     22 *
    2323 * <p>The following schema fragment specifies the expected content contained within this class.
    24  * 
     24 *
    2525 * <pre>
    2626 * &lt;complexType name="CourseFolder_t">
     
    3838 * &lt;/complexType>
    3939 * </pre>
    40  * 
    41  * 
     40 *
     41 *
    4242 */
    4343@XmlAccessorType(XmlAccessType.FIELD)
     
    6363    /**
    6464     * Gets the value of the folder property.
    65      * 
     65     *
    6666     * <p>
    6767     * This accessor method returns a reference to the live list,
     
    6969     * returned list will be present inside the JAXB object.
    7070     * This is why there is not a <CODE>set</CODE> method for the folder property.
    71      * 
     71     *
    7272     * <p>
    7373     * For example, to add a new item, do as follows:
     
    7575     *    getFolder().add(newItem);
    7676     * </pre>
    77      * 
    78      * 
     77     *
     78     *
    7979     * <p>
    8080     * Objects of the following type(s) are allowed in the list
    8181     * {@link CourseFolderT }
    82      * 
    83      * 
     82     *
     83     *
    8484     */
    8585    public List<CourseFolderT> getFolder() {
     
    9292    /**
    9393     * Gets the value of the courseNameRef property.
    94      * 
     94     *
    9595     * <p>
    9696     * This accessor method returns a reference to the live list,
     
    9898     * returned list will be present inside the JAXB object.
    9999     * This is why there is not a <CODE>set</CODE> method for the courseNameRef property.
    100      * 
     100     *
    101101     * <p>
    102102     * For example, to add a new item, do as follows:
     
    104104     *    getCourseNameRef().add(newItem);
    105105     * </pre>
    106      * 
    107      * 
     106     *
     107     *
    108108     * <p>
    109109     * Objects of the following type(s) are allowed in the list
    110110     * {@link NameKeyReferenceT }
    111      * 
    112      * 
     111     *
     112     *
    113113     */
    114114    public List<NameKeyReferenceT> getCourseNameRef() {
     
    121121    /**
    122122     * Gets the value of the notes property.
    123      * 
     123     *
    124124     * @return
    125125     *     possible object is
    126126     *     {@link String }
    127      *     
     127     *
    128128     */
    129129    public String getNotes() {
     
    133133    /**
    134134     * Sets the value of the notes property.
    135      * 
     135     *
    136136     * @param value
    137137     *     allowed object is
    138138     *     {@link String }
    139      *     
     139     *
    140140     */
    141141    public void setNotes(String value) {
     
    145145    /**
    146146     * Gets the value of the extensions property.
    147      * 
     147     *
    148148     * @return
    149149     *     possible object is
    150150     *     {@link ExtensionsT }
    151      *     
     151     *
    152152     */
    153153    public ExtensionsT getExtensions() {
     
    157157    /**
    158158     * Sets the value of the extensions property.
    159      * 
     159     *
    160160     * @param value
    161161     *     allowed object is
    162162     *     {@link ExtensionsT }
    163      *     
     163     *
    164164     */
    165165    public void setExtensions(ExtensionsT value) {
     
    169169    /**
    170170     * Gets the value of the name property.
    171      * 
     171     *
    172172     * @return
    173173     *     possible object is
    174174     *     {@link String }
    175      *     
     175     *
    176176     */
    177177    public String getName() {
     
    181181    /**
    182182     * Sets the value of the name property.
    183      * 
     183     *
    184184     * @param value
    185185     *     allowed object is
    186186     *     {@link String }
    187      *     
     187     *
    188188     */
    189189    public void setName(String value) {
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/CourseLapT.java

    r18063 r23191  
    11//
    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
    66//
    77
     
    1717/**
    1818 * <p>Java class for CourseLap_t complex type.
    19  * 
     19 *
    2020 * <p>The following schema fragment specifies the expected content contained within this class.
    21  * 
     21 *
    2222 * <pre>
    2323 * &lt;complexType name="CourseLap_t">
     
    4141 * &lt;/complexType>
    4242 * </pre>
    43  * 
    44  * 
     43 *
     44 *
    4545 */
    4646@XmlAccessorType(XmlAccessType.FIELD)
     
    8585    /**
    8686     * Gets the value of the totalTimeSeconds property.
    87      * 
     87     *
    8888     */
    8989    public double getTotalTimeSeconds() {
     
    9393    /**
    9494     * Sets the value of the totalTimeSeconds property.
    95      * 
     95     *
    9696     */
    9797    public void setTotalTimeSeconds(double value) {
     
    101101    /**
    102102     * Gets the value of the distanceMeters property.
    103      * 
     103     *
    104104     */
    105105    public double getDistanceMeters() {
     
    109109    /**
    110110     * Sets the value of the distanceMeters property.
    111      * 
     111     *
    112112     */
    113113    public void setDistanceMeters(double value) {
     
    117117    /**
    118118     * Gets the value of the beginPosition property.
    119      * 
     119     *
    120120     * @return
    121121     *     possible object is
    122122     *     {@link PositionT }
    123      *     
     123     *
    124124     */
    125125    public PositionT getBeginPosition() {
     
    129129    /**
    130130     * Sets the value of the beginPosition property.
    131      * 
     131     *
    132132     * @param value
    133133     *     allowed object is
    134134     *     {@link PositionT }
    135      *     
     135     *
    136136     */
    137137    public void setBeginPosition(PositionT value) {
     
    141141    /**
    142142     * Gets the value of the beginAltitudeMeters property.
    143      * 
     143     *
    144144     * @return
    145145     *     possible object is
    146146     *     {@link Double }
    147      *     
     147     *
    148148     */
    149149    public Double getBeginAltitudeMeters() {
     
    153153    /**
    154154     * Sets the value of the beginAltitudeMeters property.
    155      * 
     155     *
    156156     * @param value
    157157     *     allowed object is
    158158     *     {@link Double }
    159      *     
     159     *
    160160     */
    161161    public void setBeginAltitudeMeters(Double value) {
     
    165165    /**
    166166     * Gets the value of the endPosition property.
    167      * 
     167     *
    168168     * @return
    169169     *     possible object is
    170170     *     {@link PositionT }
    171      *     
     171     *
    172172     */
    173173    public PositionT getEndPosition() {
     
    177177    /**
    178178     * Sets the value of the endPosition property.
    179      * 
     179     *
    180180     * @param value
    181181     *     allowed object is
    182182     *     {@link PositionT }
    183      *     
     183     *
    184184     */
    185185    public void setEndPosition(PositionT value) {
     
    189189    /**
    190190     * Gets the value of the endAltitudeMeters property.
    191      * 
     191     *
    192192     * @return
    193193     *     possible object is
    194194     *     {@link Double }
    195      *     
     195     *
    196196     */
    197197    public Double getEndAltitudeMeters() {
     
    201201    /**
    202202     * Sets the value of the endAltitudeMeters property.
    203      * 
     203     *
    204204     * @param value
    205205     *     allowed object is
    206206     *     {@link Double }
    207      *     
     207     *
    208208     */
    209209    public void setEndAltitudeMeters(Double value) {
     
    213213    /**
    214214     * Gets the value of the averageHeartRateBpm property.
    215      * 
     215     *
    216216     * @return
    217217     *     possible object is
    218218     *     {@link HeartRateInBeatsPerMinuteT }
    219      *     
     219     *
    220220     */
    221221    public HeartRateInBeatsPerMinuteT getAverageHeartRateBpm() {
     
    225225    /**
    226226     * Sets the value of the averageHeartRateBpm property.
    227      * 
     227     *
    228228     * @param value
    229229     *     allowed object is
    230230     *     {@link HeartRateInBeatsPerMinuteT }
    231      *     
     231     *
    232232     */
    233233    public void setAverageHeartRateBpm(HeartRateInBeatsPerMinuteT value) {
     
    237237    /**
    238238     * Gets the value of the maximumHeartRateBpm property.
    239      * 
     239     *
    240240     * @return
    241241     *     possible object is
    242242     *     {@link HeartRateInBeatsPerMinuteT }
    243      *     
     243     *
    244244     */
    245245    public HeartRateInBeatsPerMinuteT getMaximumHeartRateBpm() {
     
    249249    /**
    250250     * Sets the value of the maximumHeartRateBpm property.
    251      * 
     251     *
    252252     * @param value
    253253     *     allowed object is
    254254     *     {@link HeartRateInBeatsPerMinuteT }
    255      *     
     255     *
    256256     */
    257257    public void setMaximumHeartRateBpm(HeartRateInBeatsPerMinuteT value) {
     
    261261    /**
    262262     * Gets the value of the intensity property.
    263      * 
     263     *
    264264     * @return
    265265     *     possible object is
    266266     *     {@link IntensityT }
    267      *     
     267     *
    268268     */
    269269    public IntensityT getIntensity() {
     
    273273    /**
    274274     * Sets the value of the intensity property.
    275      * 
     275     *
    276276     * @param value
    277277     *     allowed object is
    278278     *     {@link IntensityT }
    279      *     
     279     *
    280280     */
    281281    public void setIntensity(IntensityT value) {
     
    285285    /**
    286286     * Gets the value of the cadence property.
    287      * 
     287     *
    288288     * @return
    289289     *     possible object is
    290290     *     {@link Short }
    291      *     
     291     *
    292292     */
    293293    public Short getCadence() {
     
    297297    /**
    298298     * Sets the value of the cadence property.
    299      * 
     299     *
    300300     * @param value
    301301     *     allowed object is
    302302     *     {@link Short }
    303      *     
     303     *
    304304     */
    305305    public void setCadence(Short value) {
     
    309309    /**
    310310     * Gets the value of the extensions property.
    311      * 
     311     *
    312312     * @return
    313313     *     possible object is
    314314     *     {@link ExtensionsT }
    315      *     
     315     *
    316316     */
    317317    public ExtensionsT getExtensions() {
     
    321321    /**
    322322     * Sets the value of the extensions property.
    323      * 
     323     *
    324324     * @param value
    325325     *     allowed object is
    326326     *     {@link ExtensionsT }
    327      *     
     327     *
    328328     */
    329329    public void setExtensions(ExtensionsT value) {
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/CourseListT.java

    r18063 r23191  
    11//
    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
    66//
    77
     
    1919/**
    2020 * <p>Java class for CourseList_t complex type.
    21  * 
     21 *
    2222 * <p>The following schema fragment specifies the expected content contained within this class.
    23  * 
     23 *
    2424 * <pre>
    2525 * &lt;complexType name="CourseList_t">
     
    3333 * &lt;/complexType>
    3434 * </pre>
    35  * 
    36  * 
     35 *
     36 *
    3737 */
    3838@XmlAccessorType(XmlAccessType.FIELD)
     
    4747    /**
    4848     * Gets the value of the course property.
    49      * 
     49     *
    5050     * <p>
    5151     * This accessor method returns a reference to the live list,
     
    5353     * returned list will be present inside the JAXB object.
    5454     * This is why there is not a <CODE>set</CODE> method for the course property.
    55      * 
     55     *
    5656     * <p>
    5757     * For example, to add a new item, do as follows:
     
    5959     *    getCourse().add(newItem);
    6060     * </pre>
    61      * 
    62      * 
     61     *
     62     *
    6363     * <p>
    6464     * Objects of the following type(s) are allowed in the list
    6565     * {@link CourseT }
    66      * 
    67      * 
     66     *
     67     *
    6868     */
    6969    public List<CourseT> getCourse() {
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/CoursePointT.java

    r18063 r23191  
    11//
    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
    66//
    77
     
    2121/**
    2222 * <p>Java class for CoursePoint_t complex type.
    23  * 
     23 *
    2424 * <p>The following schema fragment specifies the expected content contained within this class.
    25  * 
     25 *
    2626 * <pre>
    2727 * &lt;complexType name="CoursePoint_t">
     
    4141 * &lt;/complexType>
    4242 * </pre>
    43  * 
    44  * 
     43 *
     44 *
    4545 */
    4646@XmlAccessorType(XmlAccessType.FIELD)
     
    7676    /**
    7777     * 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     *
    8383     */
    8484    public String getName() {
     
    8888    /**
    8989     * 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     *
    9595     */
    9696    public void setName(String value) {
     
    100100    /**
    101101     * Gets the value of the time property.
    102      * 
     102     *
    103103     * @return
    104104     *     possible object is
    105105     *     {@link XMLGregorianCalendar }
    106      *     
     106     *
    107107     */
    108108    public XMLGregorianCalendar getTime() {
     
    112112    /**
    113113     * Sets the value of the time property.
    114      * 
     114     *
    115115     * @param value
    116116     *     allowed object is
    117117     *     {@link XMLGregorianCalendar }
    118      *     
     118     *
    119119     */
    120120    public void setTime(XMLGregorianCalendar value) {
     
    124124    /**
    125125     * Gets the value of the position property.
    126      * 
     126     *
    127127     * @return
    128128     *     possible object is
    129129     *     {@link PositionT }
    130      *     
     130     *
    131131     */
    132132    public PositionT getPosition() {
     
    136136    /**
    137137     * Sets the value of the position property.
    138      * 
     138     *
    139139     * @param value
    140140     *     allowed object is
    141141     *     {@link PositionT }
    142      *     
     142     *
    143143     */
    144144    public void setPosition(PositionT value) {
     
    148148    /**
    149149     * Gets the value of the altitudeMeters property.
    150      * 
     150     *
    151151     * @return
    152152     *     possible object is
    153153     *     {@link Double }
    154      *     
     154     *
    155155     */
    156156    public Double getAltitudeMeters() {
     
    160160    /**
    161161     * Sets the value of the altitudeMeters property.
    162      * 
     162     *
    163163     * @param value
    164164     *     allowed object is
    165165     *     {@link Double }
    166      *     
     166     *
    167167     */
    168168    public void setAltitudeMeters(Double value) {
     
    172172    /**
    173173     * 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     *
    179179     */
    180180    public String getPointType() {
     
    184184    /**
    185185     * 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     *
    191191     */
    192192    public void setPointType(String value) {
     
    196196    /**
    197197     * 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     *
    203203     */
    204204    public String getNotes() {
     
    208208    /**
    209209     * 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     *
    215215     */
    216216    public void setNotes(String value) {
     
    220220    /**
    221221     * Gets the value of the extensions property.
    222      * 
     222     *
    223223     * @return
    224224     *     possible object is
    225225     *     {@link ExtensionsT }
    226      *     
     226     *
    227227     */
    228228    public ExtensionsT getExtensions() {
     
    232232    /**
    233233     * Sets the value of the extensions property.
    234      * 
     234     *
    235235     * @param value
    236236     *     allowed object is
    237237     *     {@link ExtensionsT }
    238      *     
     238     *
    239239     */
    240240    public void setExtensions(ExtensionsT value) {
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/CourseT.java

    r18063 r23191  
    11//
    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
    66//
    77
     
    2121/**
    2222 * <p>Java class for Course_t complex type.
    23  * 
     23 *
    2424 * <p>The following schema fragment specifies the expected content contained within this class.
    25  * 
     25 *
    2626 * <pre>
    2727 * &lt;complexType name="Course_t">
     
    4141 * &lt;/complexType>
    4242 * </pre>
    43  * 
    44  * 
     43 *
     44 *
    4545 */
    4646@XmlAccessorType(XmlAccessType.FIELD)
     
    7474    /**
    7575     * 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     *
    8181     */
    8282    public String getName() {
     
    8686    /**
    8787     * 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     *
    9393     */
    9494    public void setName(String value) {
     
    9898    /**
    9999     * Gets the value of the lap property.
    100      * 
     100     *
    101101     * <p>
    102102     * This accessor method returns a reference to the live list,
     
    104104     * returned list will be present inside the JAXB object.
    105105     * This is why there is not a <CODE>set</CODE> method for the lap property.
    106      * 
     106     *
    107107     * <p>
    108108     * For example, to add a new item, do as follows:
     
    110110     *    getLap().add(newItem);
    111111     * </pre>
    112      * 
    113      * 
     112     *
     113     *
    114114     * <p>
    115115     * Objects of the following type(s) are allowed in the list
    116116     * {@link CourseLapT }
    117      * 
    118      * 
     117     *
     118     *
    119119     */
    120120    public List<CourseLapT> getLap() {
     
    127127    /**
    128128     * Gets the value of the track property.
    129      * 
     129     *
    130130     * <p>
    131131     * This accessor method returns a reference to the live list,
     
    133133     * returned list will be present inside the JAXB object.
    134134     * This is why there is not a <CODE>set</CODE> method for the track property.
    135      * 
     135     *
    136136     * <p>
    137137     * For example, to add a new item, do as follows:
     
    139139     *    getTrack().add(newItem);
    140140     * </pre>
    141      * 
    142      * 
     141     *
     142     *
    143143     * <p>
    144144     * Objects of the following type(s) are allowed in the list
    145145     * {@link TrackT }
    146      * 
    147      * 
     146     *
     147     *
    148148     */
    149149    public List<TrackT> getTrack() {
     
    156156    /**
    157157     * 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     *
    163163     */
    164164    public String getNotes() {
     
    168168    /**
    169169     * 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     *
    175175     */
    176176    public void setNotes(String value) {
     
    180180    /**
    181181     * Gets the value of the coursePoint property.
    182      * 
     182     *
    183183     * <p>
    184184     * This accessor method returns a reference to the live list,
     
    186186     * returned list will be present inside the JAXB object.
    187187     * This is why there is not a <CODE>set</CODE> method for the coursePoint property.
    188      * 
     188     *
    189189     * <p>
    190190     * For example, to add a new item, do as follows:
     
    192192     *    getCoursePoint().add(newItem);
    193193     * </pre>
    194      * 
    195      * 
     194     *
     195     *
    196196     * <p>
    197197     * Objects of the following type(s) are allowed in the list
    198198     * {@link CoursePointT }
    199      * 
    200      * 
     199     *
     200     *
    201201     */
    202202    public List<CoursePointT> getCoursePoint() {
     
    209209    /**
    210210     * Gets the value of the creator property.
    211      * 
     211     *
    212212     * @return
    213213     *     possible object is
    214214     *     {@link AbstractSourceT }
    215      *     
     215     *
    216216     */
    217217    public AbstractSourceT getCreator() {
     
    221221    /**
    222222     * Sets the value of the creator property.
    223      * 
     223     *
    224224     * @param value
    225225     *     allowed object is
    226226     *     {@link AbstractSourceT }
    227      *     
     227     *
    228228     */
    229229    public void setCreator(AbstractSourceT value) {
     
    233233    /**
    234234     * Gets the value of the extensions property.
    235      * 
     235     *
    236236     * @return
    237237     *     possible object is
    238238     *     {@link ExtensionsT }
    239      *     
     239     *
    240240     */
    241241    public ExtensionsT getExtensions() {
     
    245245    /**
    246246     * Sets the value of the extensions property.
    247      * 
     247     *
    248248     * @param value
    249249     *     allowed object is
    250250     *     {@link ExtensionsT }
    251      *     
     251     *
    252252     */
    253253    public void setExtensions(ExtensionsT value) {
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/CoursesT.java

    r18063 r23191  
    11//
    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
    66//
    77
     
    1717/**
    1818 * <p>Java class for Courses_t complex type.
    19  * 
     19 *
    2020 * <p>The following schema fragment specifies the expected content contained within this class.
    21  * 
     21 *
    2222 * <pre>
    2323 * &lt;complexType name="Courses_t">
     
    3232 * &lt;/complexType>
    3333 * </pre>
    34  * 
    35  * 
     34 *
     35 *
    3636 */
    3737@XmlAccessorType(XmlAccessType.FIELD)
     
    4949    /**
    5050     * Gets the value of the courseFolder property.
    51      * 
     51     *
    5252     * @return
    5353     *     possible object is
    5454     *     {@link CourseFolderT }
    55      *     
     55     *
    5656     */
    5757    public CourseFolderT getCourseFolder() {
     
    6161    /**
    6262     * Sets the value of the courseFolder property.
    63      * 
     63     *
    6464     * @param value
    6565     *     allowed object is
    6666     *     {@link CourseFolderT }
    67      *     
     67     *
    6868     */
    6969    public void setCourseFolder(CourseFolderT value) {
     
    7373    /**
    7474     * Gets the value of the extensions property.
    75      * 
     75     *
    7676     * @return
    7777     *     possible object is
    7878     *     {@link ExtensionsT }
    79      *     
     79     *
    8080     */
    8181    public ExtensionsT getExtensions() {
     
    8585    /**
    8686     * Sets the value of the extensions property.
    87      * 
     87     *
    8888     * @param value
    8989     *     allowed object is
    9090     *     {@link ExtensionsT }
    91      *     
     91     *
    9292     */
    9393    public void setExtensions(ExtensionsT value) {
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/CustomHeartRateZoneT.java

    r18063 r23191  
    11//
    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
    66//
    77
     
    1717/**
    1818 * <p>Java class for CustomHeartRateZone_t complex type.
    19  * 
     19 *
    2020 * <p>The following schema fragment specifies the expected content contained within this class.
    21  * 
     21 *
    2222 * <pre>
    2323 * &lt;complexType name="CustomHeartRateZone_t">
     
    3232 * &lt;/complexType>
    3333 * </pre>
    34  * 
    35  * 
     34 *
     35 *
    3636 */
    3737@XmlAccessorType(XmlAccessType.FIELD)
     
    5151    /**
    5252     * Gets the value of the low property.
    53      * 
     53     *
    5454     * @return
    5555     *     possible object is
    5656     *     {@link HeartRateValueT }
    57      *     
     57     *
    5858     */
    5959    public HeartRateValueT getLow() {
     
    6363    /**
    6464     * Sets the value of the low property.
    65      * 
     65     *
    6666     * @param value
    6767     *     allowed object is
    6868     *     {@link HeartRateValueT }
    69      *     
     69     *
    7070     */
    7171    public void setLow(HeartRateValueT value) {
     
    7575    /**
    7676     * Gets the value of the high property.
    77      * 
     77     *
    7878     * @return
    7979     *     possible object is
    8080     *     {@link HeartRateValueT }
    81      *     
     81     *
    8282     */
    8383    public HeartRateValueT getHigh() {
     
    8787    /**
    8888     * Sets the value of the high property.
    89      * 
     89     *
    9090     * @param value
    9191     *     allowed object is
    9292     *     {@link HeartRateValueT }
    93      *     
     93     *
    9494     */
    9595    public void setHigh(HeartRateValueT value) {
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/CustomSpeedZoneT.java

    r18063 r23191  
    11//
    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
    66//
    77
     
    1717/**
    1818 * <p>Java class for CustomSpeedZone_t complex type.
    19  * 
     19 *
    2020 * <p>The following schema fragment specifies the expected content contained within this class.
    21  * 
     21 *
    2222 * <pre>
    2323 * &lt;complexType name="CustomSpeedZone_t">
     
    3333 * &lt;/complexType>
    3434 * </pre>
    35  * 
    36  * 
     35 *
     36 *
    3737 */
    3838@XmlAccessorType(XmlAccessType.FIELD)
     
    5555    /**
    5656     * Gets the value of the viewAs property.
    57      * 
     57     *
    5858     * @return
    5959     *     possible object is
    6060     *     {@link SpeedTypeT }
    61      *     
     61     *
    6262     */
    6363    public SpeedTypeT getViewAs() {
     
    6767    /**
    6868     * Sets the value of the viewAs property.
    69      * 
     69     *
    7070     * @param value
    7171     *     allowed object is
    7272     *     {@link SpeedTypeT }
    73      *     
     73     *
    7474     */
    7575    public void setViewAs(SpeedTypeT value) {
     
    7979    /**
    8080     * Gets the value of the lowInMetersPerSecond property.
    81      * 
     81     *
    8282     */
    8383    public double getLowInMetersPerSecond() {
     
    8787    /**
    8888     * Sets the value of the lowInMetersPerSecond property.
    89      * 
     89     *
    9090     */
    9191    public void setLowInMetersPerSecond(double value) {
     
    9595    /**
    9696     * Gets the value of the highInMetersPerSecond property.
    97      * 
     97     *
    9898     */
    9999    public double getHighInMetersPerSecond() {
     
    103103    /**
    104104     * Sets the value of the highInMetersPerSecond property.
    105      * 
     105     *
    106106     */
    107107    public void setHighInMetersPerSecond(double value) {
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/DeviceT.java

    r18063 r23191  
    11//
    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
    66//
    77
     
    2020 *                                used to identify the type of device capable of handling
    2121 *                                the data for loading.
    22  * 
     22 *
    2323 * <p>Java class for Device_t complex type.
    24  * 
     24 *
    2525 * <p>The following schema fragment specifies the expected content contained within this class.
    26  * 
     26 *
    2727 * <pre>
    2828 * &lt;complexType name="Device_t">
     
    3838 * &lt;/complexType>
    3939 * </pre>
    40  * 
    41  * 
     40 *
     41 *
    4242 */
    4343@XmlAccessorType(XmlAccessType.FIELD)
     
    6262    /**
    6363     * Gets the value of the unitId property.
    64      * 
     64     *
    6565     */
    6666    public long getUnitId() {
     
    7070    /**
    7171     * Sets the value of the unitId property.
    72      * 
     72     *
    7373     */
    7474    public void setUnitId(long value) {
     
    7878    /**
    7979     * Gets the value of the productID property.
    80      * 
     80     *
    8181     */
    8282    public int getProductID() {
     
    8686    /**
    8787     * Sets the value of the productID property.
    88      * 
     88     *
    8989     */
    9090    public void setProductID(int value) {
     
    9494    /**
    9595     * Gets the value of the version property.
    96      * 
     96     *
    9797     * @return
    9898     *     possible object is
    9999     *     {@link VersionT }
    100      *     
     100     *
    101101     */
    102102    public VersionT getVersion() {
     
    106106    /**
    107107     * Sets the value of the version property.
    108      * 
     108     *
    109109     * @param value
    110110     *     allowed object is
    111111     *     {@link VersionT }
    112      *     
     112     *
    113113     */
    114114    public void setVersion(VersionT value) {
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/DistanceT.java

    r18063 r23191  
    11//
    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
    66//
    77
     
    1818/**
    1919 * <p>Java class for Distance_t complex type.
    20  * 
     20 *
    2121 * <p>The following schema fragment specifies the expected content contained within this class.
    22  * 
     22 *
    2323 * <pre>
    2424 * &lt;complexType name="Distance_t">
     
    3232 * &lt;/complexType>
    3333 * </pre>
    34  * 
    35  * 
     34 *
     35 *
    3636 */
    3737@XmlAccessorType(XmlAccessType.FIELD)
     
    4949    /**
    5050     * Gets the value of the meters property.
    51      * 
     51     *
    5252     */
    5353    public int getMeters() {
     
    5757    /**
    5858     * Sets the value of the meters property.
    59      * 
     59     *
    6060     */
    6161    public void setMeters(int value) {
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/DurationT.java

    r18063 r23191  
    11//
    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
    66//
    77
     
    1717/**
    1818 * <p>Java class for Duration_t complex type.
    19  * 
     19 *
    2020 * <p>The following schema fragment specifies the expected content contained within this class.
    21  * 
     21 *
    2222 * <pre>
    2323 * &lt;complexType name="Duration_t">
     
    2828 * &lt;/complexType>
    2929 * </pre>
    30  * 
    31  * 
     30 *
     31 *
    3232 */
    3333@XmlAccessorType(XmlAccessType.FIELD)
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/ExtensionsT.java

    r18063 r23191  
    11//
    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
    66//
    77
     
    2020/**
    2121 * <p>Java class for Extensions_t complex type.
    22  * 
     22 *
    2323 * <p>The following schema fragment specifies the expected content contained within this class.
    24  * 
     24 *
    2525 * <pre>
    2626 * &lt;complexType name="Extensions_t">
     
    3434 * &lt;/complexType>
    3535 * </pre>
    36  * 
    37  * 
     36 *
     37 *
    3838 */
    3939@XmlAccessorType(XmlAccessType.FIELD)
     
    4848    /**
    4949     * Gets the value of the any property.
    50      * 
     50     *
    5151     * <p>
    5252     * This accessor method returns a reference to the live list,
     
    5454     * returned list will be present inside the JAXB object.
    5555     * This is why there is not a <CODE>set</CODE> method for the any property.
    56      * 
     56     *
    5757     * <p>
    5858     * For example, to add a new item, do as follows:
     
    6060     *    getAny().add(newItem);
    6161     * </pre>
    62      * 
    63      * 
     62     *
     63     *
    6464     * <p>
    6565     * Objects of the following type(s) are allowed in the list
    6666     * {@link Object }
    6767     * {@link Element }
    68      * 
    69      * 
     68     *
     69     *
    7070     */
    7171    public List<Object> getAny() {
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/FirstSportT.java

    r18063 r23191  
    11//
    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
    66//
    77
     
    1717/**
    1818 * <p>Java class for FirstSport_t complex type.
    19  * 
     19 *
    2020 * <p>The following schema fragment specifies the expected content contained within this class.
    21  * 
     21 *
    2222 * <pre>
    2323 * &lt;complexType name="FirstSport_t">
     
    3131 * &lt;/complexType>
    3232 * </pre>
    33  * 
    34  * 
     33 *
     34 *
    3535 */
    3636@XmlAccessorType(XmlAccessType.FIELD)
     
    4545    /**
    4646     * Gets the value of the activity property.
    47      * 
     47     *
    4848     * @return
    4949     *     possible object is
    5050     *     {@link ActivityT }
    51      *     
     51     *
    5252     */
    5353    public ActivityT getActivity() {
     
    5757    /**
    5858     * Sets the value of the activity property.
    59      * 
     59     *
    6060     * @param value
    6161     *     allowed object is
    6262     *     {@link ActivityT }
    63      *     
     63     *
    6464     */
    6565    public void setActivity(ActivityT value) {
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/FoldersT.java

    r18063 r23191  
    11//
    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
    66//
    77
     
    1717/**
    1818 * <p>Java class for Folders_t complex type.
    19  * 
     19 *
    2020 * <p>The following schema fragment specifies the expected content contained within this class.
    21  * 
     21 *
    2222 * <pre>
    2323 * &lt;complexType name="Folders_t">
     
    3333 * &lt;/complexType>
    3434 * </pre>
    35  * 
    36  * 
     35 *
     36 *
    3737 */
    3838@XmlAccessorType(XmlAccessType.FIELD)
     
    5353    /**
    5454     * Gets the value of the history property.
    55      * 
     55     *
    5656     * @return
    5757     *     possible object is
    5858     *     {@link HistoryT }
    59      *     
     59     *
    6060     */
    6161    public HistoryT getHistory() {
     
    6565    /**
    6666     * Sets the value of the history property.
    67      * 
     67     *
    6868     * @param value
    6969     *     allowed object is
    7070     *     {@link HistoryT }
    71      *     
     71     *
    7272     */
    7373    public void setHistory(HistoryT value) {
     
    7777    /**
    7878     * Gets the value of the workouts property.
    79      * 
     79     *
    8080     * @return
    8181     *     possible object is
    8282     *     {@link WorkoutsT }
    83      *     
     83     *
    8484     */
    8585    public WorkoutsT getWorkouts() {
     
    8989    /**
    9090     * Sets the value of the workouts property.
    91      * 
     91     *
    9292     * @param value
    9393     *     allowed object is
    9494     *     {@link WorkoutsT }
    95      *     
     95     *
    9696     */
    9797    public void setWorkouts(WorkoutsT value) {
     
    101101    /**
    102102     * Gets the value of the courses property.
    103      * 
     103     *
    104104     * @return
    105105     *     possible object is
    106106     *     {@link CoursesT }
    107      *     
     107     *
    108108     */
    109109    public CoursesT getCourses() {
     
    113113    /**
    114114     * Sets the value of the courses property.
    115      * 
     115     *
    116116     * @param value
    117117     *     allowed object is
    118118     *     {@link CoursesT }
    119      *     
     119     *
    120120     */
    121121    public void setCourses(CoursesT value) {
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/GenderT.java

    r18063 r23191  
    11//
    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
    66//
    77
     
    1616/**
    1717 * <p>Java class for Gender_t.
    18  * 
     18 *
    1919 * <p>The following schema fragment specifies the expected content contained within this class.
    2020 * <p>
     
    2727 * &lt;/simpleType>
    2828 * </pre>
    29  * 
     29 *
    3030 */
    3131@XmlType(name = "Gender_t")
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/HeartRateAboveT.java

    r18063 r23191  
    11//
    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
    66//
    77
     
    1717/**
    1818 * <p>Java class for HeartRateAbove_t complex type.
    19  * 
     19 *
    2020 * <p>The following schema fragment specifies the expected content contained within this class.
    21  * 
     21 *
    2222 * <pre>
    2323 * &lt;complexType name="HeartRateAbove_t">
     
    3131 * &lt;/complexType>
    3232 * </pre>
    33  * 
    34  * 
     33 *
     34 *
    3535 */
    3636@XmlAccessorType(XmlAccessType.FIELD)
     
    4747    /**
    4848     * Gets the value of the heartRate property.
    49      * 
     49     *
    5050     * @return
    5151     *     possible object is
    5252     *     {@link HeartRateValueT }
    53      *     
     53     *
    5454     */
    5555    public HeartRateValueT getHeartRate() {
     
    5959    /**
    6060     * Sets the value of the heartRate property.
    61      * 
     61     *
    6262     * @param value
    6363     *     allowed object is
    6464     *     {@link HeartRateValueT }
    65      *     
     65     *
    6666     */
    6767    public void setHeartRate(HeartRateValueT value) {
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/HeartRateAsPercentOfMaxT.java

    r18063 r23191  
    11//
    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
    66//
    77
     
    1717/**
    1818 * <p>Java class for HeartRateAsPercentOfMax_t complex type.
    19  * 
     19 *
    2020 * <p>The following schema fragment specifies the expected content contained within this class.
    21  * 
     21 *
    2222 * <pre>
    2323 * &lt;complexType name="HeartRateAsPercentOfMax_t">
     
    3131 * &lt;/complexType>
    3232 * </pre>
    33  * 
    34  * 
     33 *
     34 *
    3535 */
    3636@XmlAccessorType(XmlAccessType.FIELD)
     
    4747    /**
    4848     * Gets the value of the value property.
    49      * 
     49     *
    5050     */
    5151    public short getValue() {
     
    5555    /**
    5656     * Sets the value of the value property.
    57      * 
     57     *
    5858     */
    5959    public void setValue(short value) {
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/HeartRateBelowT.java

    r18063 r23191  
    11//
    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
    66//
    77
     
    1717/**
    1818 * <p>Java class for HeartRateBelow_t complex type.
    19  * 
     19 *
    2020 * <p>The following schema fragment specifies the expected content contained within this class.
    21  * 
     21 *
    2222 * <pre>
    2323 * &lt;complexType name="HeartRateBelow_t">
     
    3131 * &lt;/complexType>
    3232 * </pre>
    33  * 
    34  * 
     33 *
     34 *
    3535 */
    3636@XmlAccessorType(XmlAccessType.FIELD)
     
    4747    /**
    4848     * Gets the value of the heartRate property.
    49      * 
     49     *
    5050     * @return
    5151     *     possible object is
    5252     *     {@link HeartRateValueT }
    53      *     
     53     *
    5454     */
    5555    public HeartRateValueT getHeartRate() {
     
    5959    /**
    6060     * Sets the value of the heartRate property.
    61      * 
     61     *
    6262     * @param value
    6363     *     allowed object is
    6464     *     {@link HeartRateValueT }
    65      *     
     65     *
    6666     */
    6767    public void setHeartRate(HeartRateValueT value) {
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/HeartRateInBeatsPerMinuteT.java

    r18063 r23191  
    11//
    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
    66//
    77
     
    1717/**
    1818 * <p>Java class for HeartRateInBeatsPerMinute_t complex type.
    19  * 
     19 *
    2020 * <p>The following schema fragment specifies the expected content contained within this class.
    21  * 
     21 *
    2222 * <pre>
    2323 * &lt;complexType name="HeartRateInBeatsPerMinute_t">
     
    3131 * &lt;/complexType>
    3232 * </pre>
    33  * 
    34  * 
     33 *
     34 *
    3535 */
    3636@XmlAccessorType(XmlAccessType.FIELD)
     
    4747    /**
    4848     * Gets the value of the value property.
    49      * 
     49     *
    5050     */
    5151    public short getValue() {
     
    5555    /**
    5656     * Sets the value of the value property.
    57      * 
     57     *
    5858     */
    5959    public void setValue(short value) {
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/HeartRateT.java

    r18063 r23191  
    11//
    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
    66//
    77
     
    1717/**
    1818 * <p>Java class for HeartRate_t complex type.
    19  * 
     19 *
    2020 * <p>The following schema fragment specifies the expected content contained within this class.
    21  * 
     21 *
    2222 * <pre>
    2323 * &lt;complexType name="HeartRate_t">
     
    3131 * &lt;/complexType>
    3232 * </pre>
    33  * 
    34  * 
     33 *
     34 *
    3535 */
    3636@XmlAccessorType(XmlAccessType.FIELD)
     
    4747    /**
    4848     * Gets the value of the heartRateZone property.
    49      * 
     49     *
    5050     * @return
    5151     *     possible object is
    5252     *     {@link ZoneT }
    53      *     
     53     *
    5454     */
    5555    public ZoneT getHeartRateZone() {
     
    5959    /**
    6060     * Sets the value of the heartRateZone property.
    61      * 
     61     *
    6262     * @param value
    6363     *     allowed object is
    6464     *     {@link ZoneT }
    65      *     
     65     *
    6666     */
    6767    public void setHeartRateZone(ZoneT value) {
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/HeartRateValueT.java

    r18063 r23191  
    11//
    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
    66//
    77
     
    1717/**
    1818 * <p>Java class for HeartRateValue_t complex type.
    19  * 
     19 *
    2020 * <p>The following schema fragment specifies the expected content contained within this class.
    21  * 
     21 *
    2222 * <pre>
    2323 * &lt;complexType name="HeartRateValue_t">
     
    2828 * &lt;/complexType>
    2929 * </pre>
    30  * 
    31  * 
     30 *
     31 *
    3232 */
    3333@XmlAccessorType(XmlAccessType.FIELD)
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/HistoryFolderT.java

    r18063 r23191  
    11//
    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
    66//
    77
     
    2020/**
    2121 * <p>Java class for HistoryFolder_t complex type.
    22  * 
     22 *
    2323 * <p>The following schema fragment specifies the expected content contained within this class.
    24  * 
     24 *
    2525 * <pre>
    2626 * &lt;complexType name="HistoryFolder_t">
     
    3939 * &lt;/complexType>
    4040 * </pre>
    41  * 
    42  * 
     41 *
     42 *
    4343 */
    4444@XmlAccessorType(XmlAccessType.FIELD)
     
    6767    /**
    6868     * Gets the value of the folder property.
    69      * 
     69     *
    7070     * <p>
    7171     * This accessor method returns a reference to the live list,
     
    7373     * returned list will be present inside the JAXB object.
    7474     * This is why there is not a <CODE>set</CODE> method for the folder property.
    75      * 
     75     *
    7676     * <p>
    7777     * For example, to add a new item, do as follows:
     
    7979     *    getFolder().add(newItem);
    8080     * </pre>
    81      * 
    82      * 
     81     *
     82     *
    8383     * <p>
    8484     * Objects of the following type(s) are allowed in the list
    8585     * {@link HistoryFolderT }
    86      * 
    87      * 
     86     *
     87     *
    8888     */
    8989    public List<HistoryFolderT> getFolder() {
     
    9696    /**
    9797     * Gets the value of the activityRef property.
    98      * 
     98     *
    9999     * <p>
    100100     * This accessor method returns a reference to the live list,
     
    102102     * returned list will be present inside the JAXB object.
    103103     * This is why there is not a <CODE>set</CODE> method for the activityRef property.
    104      * 
     104     *
    105105     * <p>
    106106     * For example, to add a new item, do as follows:
     
    108108     *    getActivityRef().add(newItem);
    109109     * </pre>
    110      * 
    111      * 
     110     *
     111     *
    112112     * <p>
    113113     * Objects of the following type(s) are allowed in the list
    114114     * {@link ActivityReferenceT }
    115      * 
    116      * 
     115     *
     116     *
    117117     */
    118118    public List<ActivityReferenceT> getActivityRef() {
     
    125125    /**
    126126     * Gets the value of the week property.
    127      * 
     127     *
    128128     * <p>
    129129     * This accessor method returns a reference to the live list,
     
    131131     * returned list will be present inside the JAXB object.
    132132     * This is why there is not a <CODE>set</CODE> method for the week property.
    133      * 
     133     *
    134134     * <p>
    135135     * For example, to add a new item, do as follows:
     
    137137     *    getWeek().add(newItem);
    138138     * </pre>
    139      * 
    140      * 
     139     *
     140     *
    141141     * <p>
    142142     * Objects of the following type(s) are allowed in the list
    143143     * {@link WeekT }
    144      * 
    145      * 
     144     *
     145     *
    146146     */
    147147    public List<WeekT> getWeek() {
     
    154154    /**
    155155     * Gets the value of the notes property.
    156      * 
     156     *
    157157     * @return
    158158     *     possible object is
    159159     *     {@link String }
    160      *     
     160     *
    161161     */
    162162    public String getNotes() {
     
    166166    /**
    167167     * Sets the value of the notes property.
    168      * 
     168     *
    169169     * @param value
    170170     *     allowed object is
    171171     *     {@link String }
    172      *     
     172     *
    173173     */
    174174    public void setNotes(String value) {
     
    178178    /**
    179179     * Gets the value of the extensions property.
    180      * 
     180     *
    181181     * @return
    182182     *     possible object is
    183183     *     {@link ExtensionsT }
    184      *     
     184     *
    185185     */
    186186    public ExtensionsT getExtensions() {
     
    190190    /**
    191191     * Sets the value of the extensions property.
    192      * 
     192     *
    193193     * @param value
    194194     *     allowed object is
    195195     *     {@link ExtensionsT }
    196      *     
     196     *
    197197     */
    198198    public void setExtensions(ExtensionsT value) {
     
    202202    /**
    203203     * Gets the value of the name property.
    204      * 
     204     *
    205205     * @return
    206206     *     possible object is
    207207     *     {@link String }
    208      *     
     208     *
    209209     */
    210210    public String getName() {
     
    214214    /**
    215215     * Sets the value of the name property.
    216      * 
     216     *
    217217     * @param value
    218218     *     allowed object is
    219219     *     {@link String }
    220      *     
     220     *
    221221     */
    222222    public void setName(String value) {
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/HistoryT.java

    r18063 r23191  
    11//
    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
    66//
    77
     
    1717/**
    1818 * <p>Java class for History_t complex type.
    19  * 
     19 *
    2020 * <p>The following schema fragment specifies the expected content contained within this class.
    21  * 
     21 *
    2222 * <pre>
    2323 * &lt;complexType name="History_t">
     
    3535 * &lt;/complexType>
    3636 * </pre>
    37  * 
    38  * 
     37 *
     38 *
    3939 */
    4040@XmlAccessorType(XmlAccessType.FIELD)
     
    6161    /**
    6262     * Gets the value of the running property.
    63      * 
     63     *
    6464     * @return
    6565     *     possible object is
    6666     *     {@link HistoryFolderT }
    67      *     
     67     *
    6868     */
    6969    public HistoryFolderT getRunning() {
     
    7373    /**
    7474     * Sets the value of the running property.
    75      * 
     75     *
    7676     * @param value
    7777     *     allowed object is
    7878     *     {@link HistoryFolderT }
    79      *     
     79     *
    8080     */
    8181    public void setRunning(HistoryFolderT value) {
     
    8585    /**
    8686     * Gets the value of the biking property.
    87      * 
     87     *
    8888     * @return
    8989     *     possible object is
    9090     *     {@link HistoryFolderT }
    91      *     
     91     *
    9292     */
    9393    public HistoryFolderT getBiking() {
     
    9797    /**
    9898     * Sets the value of the biking property.
    99      * 
     99     *
    100100     * @param value
    101101     *     allowed object is
    102102     *     {@link HistoryFolderT }
    103      *     
     103     *
    104104     */
    105105    public void setBiking(HistoryFolderT value) {
     
    109109    /**
    110110     * Gets the value of the other property.
    111      * 
     111     *
    112112     * @return
    113113     *     possible object is
    114114     *     {@link HistoryFolderT }
    115      *     
     115     *
    116116     */
    117117    public HistoryFolderT getOther() {
     
    121121    /**
    122122     * Sets the value of the other property.
    123      * 
     123     *
    124124     * @param value
    125125     *     allowed object is
    126126     *     {@link HistoryFolderT }
    127      *     
     127     *
    128128     */
    129129    public void setOther(HistoryFolderT value) {
     
    133133    /**
    134134     * Gets the value of the multiSport property.
    135      * 
     135     *
    136136     * @return
    137137     *     possible object is
    138138     *     {@link MultiSportFolderT }
    139      *     
     139     *
    140140     */
    141141    public MultiSportFolderT getMultiSport() {
     
    145145    /**
    146146     * Sets the value of the multiSport property.
    147      * 
     147     *
    148148     * @param value
    149149     *     allowed object is
    150150     *     {@link MultiSportFolderT }
    151      *     
     151     *
    152152     */
    153153    public void setMultiSport(MultiSportFolderT value) {
     
    157157    /**
    158158     * Gets the value of the extensions property.
    159      * 
     159     *
    160160     * @return
    161161     *     possible object is
    162162     *     {@link ExtensionsT }
    163      *     
     163     *
    164164     */
    165165    public ExtensionsT getExtensions() {
     
    169169    /**
    170170     * Sets the value of the extensions property.
    171      * 
     171     *
    172172     * @param value
    173173     *     allowed object is
    174174     *     {@link ExtensionsT }
    175      *     
     175     *
    176176     */
    177177    public void setExtensions(ExtensionsT value) {
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/IntensityT.java

    r18063 r23191  
    11//
    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
    66//
    77
     
    1616/**
    1717 * <p>Java class for Intensity_t.
    18  * 
     18 *
    1919 * <p>The following schema fragment specifies the expected content contained within this class.
    2020 * <p>
     
    2727 * &lt;/simpleType>
    2828 * </pre>
    29  * 
     29 *
    3030 */
    3131@XmlType(name = "Intensity_t")
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/MultiSportFolderT.java

    r18063 r23191  
    11//
    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
    66//
    77
     
    2020/**
    2121 * <p>Java class for MultiSportFolder_t complex type.
    22  * 
     22 *
    2323 * <p>The following schema fragment specifies the expected content contained within this class.
    24  * 
     24 *
    2525 * <pre>
    2626 * &lt;complexType name="MultiSportFolder_t">
     
    3939 * &lt;/complexType>
    4040 * </pre>
    41  * 
    42  * 
     41 *
     42 *
    4343 */
    4444@XmlAccessorType(XmlAccessType.FIELD)
     
    6767    /**
    6868     * Gets the value of the folder property.
    69      * 
     69     *
    7070     * <p>
    7171     * This accessor method returns a reference to the live list,
     
    7373     * returned list will be present inside the JAXB object.
    7474     * This is why there is not a <CODE>set</CODE> method for the folder property.
    75      * 
     75     *
    7676     * <p>
    7777     * For example, to add a new item, do as follows:
     
    7979     *    getFolder().add(newItem);
    8080     * </pre>
    81      * 
    82      * 
     81     *
     82     *
    8383     * <p>
    8484     * Objects of the following type(s) are allowed in the list
    8585     * {@link MultiSportFolderT }
    86      * 
    87      * 
     86     *
     87     *
    8888     */
    8989    public List<MultiSportFolderT> getFolder() {
     
    9696    /**
    9797     * Gets the value of the multisportActivityRef property.
    98      * 
     98     *
    9999     * <p>
    100100     * This accessor method returns a reference to the live list,
     
    102102     * returned list will be present inside the JAXB object.
    103103     * This is why there is not a <CODE>set</CODE> method for the multisportActivityRef property.
    104      * 
     104     *
    105105     * <p>
    106106     * For example, to add a new item, do as follows:
     
    108108     *    getMultisportActivityRef().add(newItem);
    109109     * </pre>
    110      * 
    111      * 
     110     *
     111     *
    112112     * <p>
    113113     * Objects of the following type(s) are allowed in the list
    114114     * {@link ActivityReferenceT }
    115      * 
    116      * 
     115     *
     116     *
    117117     */
    118118    public List<ActivityReferenceT> getMultisportActivityRef() {
     
    125125    /**
    126126     * Gets the value of the week property.
    127      * 
     127     *
    128128     * <p>
    129129     * This accessor method returns a reference to the live list,
     
    131131     * returned list will be present inside the JAXB object.
    132132     * This is why there is not a <CODE>set</CODE> method for the week property.
    133      * 
     133     *
    134134     * <p>
    135135     * For example, to add a new item, do as follows:
     
    137137     *    getWeek().add(newItem);
    138138     * </pre>
    139      * 
    140      * 
     139     *
     140     *
    141141     * <p>
    142142     * Objects of the following type(s) are allowed in the list
    143143     * {@link WeekT }
    144      * 
    145      * 
     144     *
     145     *
    146146     */
    147147    public List<WeekT> getWeek() {
     
    154154    /**
    155155     * Gets the value of the notes property.
    156      * 
     156     *
    157157     * @return
    158158     *     possible object is
    159159     *     {@link String }
    160      *     
     160     *
    161161     */
    162162    public String getNotes() {
     
    166166    /**
    167167     * Sets the value of the notes property.
    168      * 
     168     *
    169169     * @param value
    170170     *     allowed object is
    171171     *     {@link String }
    172      *     
     172     *
    173173     */
    174174    public void setNotes(String value) {
     
    178178    /**
    179179     * Gets the value of the extensions property.
    180      * 
     180     *
    181181     * @return
    182182     *     possible object is
    183183     *     {@link ExtensionsT }
    184      *     
     184     *
    185185     */
    186186    public ExtensionsT getExtensions() {
     
    190190    /**
    191191     * Sets the value of the extensions property.
    192      * 
     192     *
    193193     * @param value
    194194     *     allowed object is
    195195     *     {@link ExtensionsT }
    196      *     
     196     *
    197197     */
    198198    public void setExtensions(ExtensionsT value) {
     
    202202    /**
    203203     * Gets the value of the name property.
    204      * 
     204     *
    205205     * @return
    206206     *     possible object is
    207207     *     {@link String }
    208      *     
     208     *
    209209     */
    210210    public String getName() {
     
    214214    /**
    215215     * Sets the value of the name property.
    216      * 
     216     *
    217217     * @param value
    218218     *     allowed object is
    219219     *     {@link String }
    220      *     
     220     *
    221221     */
    222222    public void setName(String value) {
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/MultiSportSessionT.java

    r18063 r23191  
    11//
    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
    66//
    77
     
    2121/**
    2222 * <p>Java class for MultiSportSession_t complex type.
    23  * 
     23 *
    2424 * <p>The following schema fragment specifies the expected content contained within this class.
    25  * 
     25 *
    2626 * <pre>
    2727 * &lt;complexType name="MultiSportSession_t">
     
    3838 * &lt;/complexType>
    3939 * </pre>
    40  * 
    41  * 
     40 *
     41 *
    4242 */
    4343@XmlAccessorType(XmlAccessType.FIELD)
     
    6262    /**
    6363     * Gets the value of the id property.
    64      * 
     64     *
    6565     * @return
    6666     *     possible object is
    6767     *     {@link XMLGregorianCalendar }
    68      *     
     68     *
    6969     */
    7070    public XMLGregorianCalendar getId() {
     
    7474    /**
    7575     * Sets the value of the id property.
    76      * 
     76     *
    7777     * @param value
    7878     *     allowed object is
    7979     *     {@link XMLGregorianCalendar }
    80      *     
     80     *
    8181     */
    8282    public void setId(XMLGregorianCalendar value) {
     
    8686    /**
    8787     * Gets the value of the firstSport property.
    88      * 
     88     *
    8989     * @return
    9090     *     possible object is
    9191     *     {@link FirstSportT }
    92      *     
     92     *
    9393     */
    9494    public FirstSportT getFirstSport() {
     
    9898    /**
    9999     * Sets the value of the firstSport property.
    100      * 
     100     *
    101101     * @param value
    102102     *     allowed object is
    103103     *     {@link FirstSportT }
    104      *     
     104     *
    105105     */
    106106    public void setFirstSport(FirstSportT value) {
     
    110110    /**
    111111     * Gets the value of the nextSport property.
    112      * 
     112     *
    113113     * <p>
    114114     * This accessor method returns a reference to the live list,
     
    116116     * returned list will be present inside the JAXB object.
    117117     * This is why there is not a <CODE>set</CODE> method for the nextSport property.
    118      * 
     118     *
    119119     * <p>
    120120     * For example, to add a new item, do as follows:
     
    122122     *    getNextSport().add(newItem);
    123123     * </pre>
    124      * 
    125      * 
     124     *
     125     *
    126126     * <p>
    127127     * Objects of the following type(s) are allowed in the list
    128128     * {@link NextSportT }
    129      * 
    130      * 
     129     *
     130     *
    131131     */
    132132    public List<NextSportT> getNextSport() {
     
    139139    /**
    140140     * Gets the value of the notes property.
    141      * 
     141     *
    142142     * @return
    143143     *     possible object is
    144144     *     {@link String }
    145      *     
     145     *
    146146     */
    147147    public String getNotes() {
     
    151151    /**
    152152     * Sets the value of the notes property.
    153      * 
     153     *
    154154     * @param value
    155155     *     allowed object is
    156156     *     {@link String }
    157      *     
     157     *
    158158     */
    159159    public void setNotes(String value) {
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/NameKeyReferenceT.java

    r18063 r23191  
    11//
    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
    66//
    77
     
    1919/**
    2020 * <p>Java class for NameKeyReference_t complex type.
    21  * 
     21 *
    2222 * <p>The following schema fragment specifies the expected content contained within this class.
    23  * 
     23 *
    2424 * <pre>
    2525 * &lt;complexType name="NameKeyReference_t">
     
    3333 * &lt;/complexType>
    3434 * </pre>
    35  * 
    36  * 
     35 *
     36 *
    3737 */
    3838@XmlAccessorType(XmlAccessType.FIELD)
     
    4848    /**
    4949     * Gets the value of the id property.
    50      * 
     50     *
    5151     * @return
    5252     *     possible object is
    5353     *     {@link String }
    54      *     
     54     *
    5555     */
    5656    public String getId() {
     
    6060    /**
    6161     * Sets the value of the id property.
    62      * 
     62     *
    6363     * @param value
    6464     *     allowed object is
    6565     *     {@link String }
    66      *     
     66     *
    6767     */
    6868    public void setId(String value) {
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/NextSportT.java

    r18063 r23191  
    11//
    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
    66//
    77
     
    1717/**
    1818 * <p>Java class for NextSport_t complex type.
    19  * 
     19 *
    2020 * <p>The following schema fragment specifies the expected content contained within this class.
    21  * 
     21 *
    2222 * <pre>
    2323 * &lt;complexType name="NextSport_t">
     
    3232 * &lt;/complexType>
    3333 * </pre>
    34  * 
    35  * 
     34 *
     35 *
    3636 */
    3737@XmlAccessorType(XmlAccessType.FIELD)
     
    4949    /**
    5050     * Gets the value of the transition property.
    51      * 
     51     *
    5252     * @return
    5353     *     possible object is
    5454     *     {@link ActivityLapT }
    55      *     
     55     *
    5656     */
    5757    public ActivityLapT getTransition() {
     
    6161    /**
    6262     * Sets the value of the transition property.
    63      * 
     63     *
    6464     * @param value
    6565     *     allowed object is
    6666     *     {@link ActivityLapT }
    67      *     
     67     *
    6868     */
    6969    public void setTransition(ActivityLapT value) {
     
    7373    /**
    7474     * Gets the value of the activity property.
    75      * 
     75     *
    7676     * @return
    7777     *     possible object is
    7878     *     {@link ActivityT }
    79      *     
     79     *
    8080     */
    8181    public ActivityT getActivity() {
     
    8585    /**
    8686     * Sets the value of the activity property.
    87      * 
     87     *
    8888     * @param value
    8989     *     allowed object is
    9090     *     {@link ActivityT }
    91      *     
     91     *
    9292     */
    9393    public void setActivity(ActivityT value) {
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/NoneT.java

    r18063 r23191  
    11//
    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
    66//
    77
     
    1616/**
    1717 * <p>Java class for None_t complex type.
    18  * 
     18 *
    1919 * <p>The following schema fragment specifies the expected content contained within this class.
    20  * 
     20 *
    2121 * <pre>
    2222 * &lt;complexType name="None_t">
     
    2727 * &lt;/complexType>
    2828 * </pre>
    29  * 
    30  * 
     29 *
     30 *
    3131 */
    3232@XmlAccessorType(XmlAccessType.FIELD)
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/ObjectFactory.java

    r18063 r23191  
    11//
    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
    66//
    77
     
    1616
    1717/**
    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
    2828 * provided in this class.
    29  * 
     29 *
    3030 */
    3131@XmlRegistry
     
    3636    /**
    3737     * 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     *
    3939     */
    4040    public ObjectFactory() {
     
    4343    /**
    4444     * Create an instance of {@link NameKeyReferenceT }
    45      * 
     45     *
    4646     */
    4747    public NameKeyReferenceT createNameKeyReferenceT() {
     
    5151    /**
    5252     * Create an instance of {@link CourseListT }
    53      * 
     53     *
    5454     */
    5555    public CourseListT createCourseListT() {
     
    5959    /**
    6060     * Create an instance of {@link RepeatT }
    61      * 
     61     *
    6262     */
    6363    public RepeatT createRepeatT() {
     
    6767    /**
    6868     * Create an instance of {@link SpeedT }
    69      * 
     69     *
    7070     */
    7171    public SpeedT createSpeedT() {
     
    7575    /**
    7676     * Create an instance of {@link HeartRateAsPercentOfMaxT }
    77      * 
     77     *
    7878     */
    7979    public HeartRateAsPercentOfMaxT createHeartRateAsPercentOfMaxT() {
     
    8383    /**
    8484     * Create an instance of {@link NoneT }
    85      * 
     85     *
    8686     */
    8787    public NoneT createNoneT() {
     
    9191    /**
    9292     * Create an instance of {@link CourseFolderT }
    93      * 
     93     *
    9494     */
    9595    public CourseFolderT createCourseFolderT() {
     
    9999    /**
    100100     * Create an instance of {@link TrackT }
    101      * 
     101     *
    102102     */
    103103    public TrackT createTrackT() {
     
    107107    /**
    108108     * Create an instance of {@link PredefinedSpeedZoneT }
    109      * 
     109     *
    110110     */
    111111    public PredefinedSpeedZoneT createPredefinedSpeedZoneT() {
     
    115115    /**
    116116     * Create an instance of {@link CadenceT }
    117      * 
     117     *
    118118     */
    119119    public CadenceT createCadenceT() {
     
    123123    /**
    124124     * Create an instance of {@link WorkoutFolderT }
    125      * 
     125     *
    126126     */
    127127    public WorkoutFolderT createWorkoutFolderT() {
     
    131131    /**
    132132     * Create an instance of {@link QuickWorkoutT }
    133      * 
     133     *
    134134     */
    135135    public QuickWorkoutT createQuickWorkoutT() {
     
    139139    /**
    140140     * Create an instance of {@link ActivityReferenceT }
    141      * 
     141     *
    142142     */
    143143    public ActivityReferenceT createActivityReferenceT() {
     
    147147    /**
    148148     * Create an instance of {@link VersionT }
    149      * 
     149     *
    150150     */
    151151    public VersionT createVersionT() {
     
    155155    /**
    156156     * Create an instance of {@link WorkoutListT }
    157      * 
     157     *
    158158     */
    159159    public WorkoutListT createWorkoutListT() {
     
    163163    /**
    164164     * Create an instance of {@link HeartRateInBeatsPerMinuteT }
    165      * 
     165     *
    166166     */
    167167    public HeartRateInBeatsPerMinuteT createHeartRateInBeatsPerMinuteT() {
     
    171171    /**
    172172     * Create an instance of {@link PositionT }
    173      * 
     173     *
    174174     */
    175175    public PositionT createPositionT() {
     
    179179    /**
    180180     * Create an instance of {@link HistoryT }
    181      * 
     181     *
    182182     */
    183183    public HistoryT createHistoryT() {
     
    187187    /**
    188188     * Create an instance of {@link ApplicationT }
    189      * 
     189     *
    190190     */
    191191    public ApplicationT createApplicationT() {
     
    195195    /**
    196196     * Create an instance of {@link DeviceT }
    197      * 
     197     *
    198198     */
    199199    public DeviceT createDeviceT() {
     
    203203    /**
    204204     * Create an instance of {@link ExtensionsT }
    205      * 
     205     *
    206206     */
    207207    public ExtensionsT createExtensionsT() {
     
    211211    /**
    212212     * Create an instance of {@link TimeT }
    213      * 
     213     *
    214214     */
    215215    public TimeT createTimeT() {
     
    219219    /**
    220220     * Create an instance of {@link WorkoutsT }
    221      * 
     221     *
    222222     */
    223223    public WorkoutsT createWorkoutsT() {
     
    227227    /**
    228228     * Create an instance of {@link ActivityLapT }
    229      * 
     229     *
    230230     */
    231231    public ActivityLapT createActivityLapT() {
     
    235235    /**
    236236     * Create an instance of {@link MultiSportSessionT }
    237      * 
     237     *
    238238     */
    239239    public MultiSportSessionT createMultiSportSessionT() {
     
    243243    /**
    244244     * Create an instance of {@link BuildT }
    245      * 
     245     *
    246246     */
    247247    public BuildT createBuildT() {
     
    251251    /**
    252252     * Create an instance of {@link ActivityT }
    253      * 
     253     *
    254254     */
    255255    public ActivityT createActivityT() {
     
    259259    /**
    260260     * Create an instance of {@link TrainingT }
    261      * 
     261     *
    262262     */
    263263    public TrainingT createTrainingT() {
     
    267267    /**
    268268     * Create an instance of {@link PlanT }
    269      * 
     269     *
    270270     */
    271271    public PlanT createPlanT() {
     
    275275    /**
    276276     * Create an instance of {@link TrainingCenterDatabaseT }
    277      * 
     277     *
    278278     */
    279279    public TrainingCenterDatabaseT createTrainingCenterDatabaseT() {
     
    283283    /**
    284284     * Create an instance of {@link FoldersT }
    285      * 
     285     *
    286286     */
    287287    public FoldersT createFoldersT() {
     
    291291    /**
    292292     * Create an instance of {@link UserInitiatedT }
    293      * 
     293     *
    294294     */
    295295    public UserInitiatedT createUserInitiatedT() {
     
    299299    /**
    300300     * Create an instance of {@link MultiSportFolderT }
    301      * 
     301     *
    302302     */
    303303    public MultiSportFolderT createMultiSportFolderT() {
     
    307307    /**
    308308     * Create an instance of {@link ActivityListT }
    309      * 
     309     *
    310310     */
    311311    public ActivityListT createActivityListT() {
     
    315315    /**
    316316     * Create an instance of {@link CustomHeartRateZoneT }
    317      * 
     317     *
    318318     */
    319319    public CustomHeartRateZoneT createCustomHeartRateZoneT() {
     
    323323    /**
    324324     * Create an instance of {@link TrackpointT }
    325      * 
     325     *
    326326     */
    327327    public TrackpointT createTrackpointT() {
     
    331331    /**
    332332     * Create an instance of {@link CourseT }
    333      * 
     333     *
    334334     */
    335335    public CourseT createCourseT() {
     
    339339    /**
    340340     * Create an instance of {@link CourseLapT }
    341      * 
     341     *
    342342     */
    343343    public CourseLapT createCourseLapT() {
     
    347347    /**
    348348     * Create an instance of {@link NextSportT }
    349      * 
     349     *
    350350     */
    351351    public NextSportT createNextSportT() {
     
    355355    /**
    356356     * Create an instance of {@link DistanceT }
    357      * 
     357     *
    358358     */
    359359    public DistanceT createDistanceT() {
     
    363363    /**
    364364     * Create an instance of {@link FirstSportT }
    365      * 
     365     *
    366366     */
    367367    public FirstSportT createFirstSportT() {
     
    371371    /**
    372372     * Create an instance of {@link HeartRateT }
    373      * 
     373     *
    374374     */
    375375    public HeartRateT createHeartRateT() {
     
    379379    /**
    380380     * Create an instance of {@link CaloriesBurnedT }
    381      * 
     381     *
    382382     */
    383383    public CaloriesBurnedT createCaloriesBurnedT() {
     
    387387    /**
    388388     * Create an instance of {@link StepT }
    389      * 
     389     *
    390390     */
    391391    public StepT createStepT() {
     
    395395    /**
    396396     * Create an instance of {@link HeartRateBelowT }
    397      * 
     397     *
    398398     */
    399399    public HeartRateBelowT createHeartRateBelowT() {
     
    403403    /**
    404404     * Create an instance of {@link HeartRateAboveT }
    405      * 
     405     *
    406406     */
    407407    public HeartRateAboveT createHeartRateAboveT() {
     
    411411    /**
    412412     * Create an instance of {@link CoursesT }
    413      * 
     413     *
    414414     */
    415415    public CoursesT createCoursesT() {
     
    419419    /**
    420420     * Create an instance of {@link WorkoutT }
    421      * 
     421     *
    422422     */
    423423    public WorkoutT createWorkoutT() {
     
    427427    /**
    428428     * Create an instance of {@link WeekT }
    429      * 
     429     *
    430430     */
    431431    public WeekT createWeekT() {
     
    435435    /**
    436436     * Create an instance of {@link CustomSpeedZoneT }
    437      * 
     437     *
    438438     */
    439439    public CustomSpeedZoneT createCustomSpeedZoneT() {
     
    443443    /**
    444444     * Create an instance of {@link HistoryFolderT }
    445      * 
     445     *
    446446     */
    447447    public HistoryFolderT createHistoryFolderT() {
     
    451451    /**
    452452     * Create an instance of {@link PredefinedHeartRateZoneT }
    453      * 
     453     *
    454454     */
    455455    public PredefinedHeartRateZoneT createPredefinedHeartRateZoneT() {
     
    459459    /**
    460460     * Create an instance of {@link CoursePointT }
    461      * 
     461     *
    462462     */
    463463    public CoursePointT createCoursePointT() {
     
    467467    /**
    468468     * Create an instance of {@link JAXBElement }{@code <}{@link TrainingCenterDatabaseT }{@code >}}
    469      * 
     469     *
    470470     */
    471471    @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  
    11//
    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
    66//
    77
     
    2020/**
    2121 * <p>Java class for Plan_t complex type.
    22  * 
     22 *
    2323 * <p>The following schema fragment specifies the expected content contained within this class.
    24  * 
     24 *
    2525 * <pre>
    2626 * &lt;complexType name="Plan_t">
     
    3737 * &lt;/complexType>
    3838 * </pre>
    39  * 
    40  * 
     39 *
     40 *
    4141 */
    4242@XmlAccessorType(XmlAccessType.FIELD)
     
    5959    /**
    6060     * Gets the value of the name property.
    61      * 
     61     *
    6262     * @return
    6363     *     possible object is
    6464     *     {@link String }
    65      *     
     65     *
    6666     */
    6767    public String getName() {
     
    7171    /**
    7272     * Sets the value of the name property.
    73      * 
     73     *
    7474     * @param value
    7575     *     allowed object is
    7676     *     {@link String }
    77      *     
     77     *
    7878     */
    7979    public void setName(String value) {
     
    8383    /**
    8484     * Gets the value of the extensions property.
    85      * 
     85     *
    8686     * @return
    8787     *     possible object is
    8888     *     {@link ExtensionsT }
    89      *     
     89     *
    9090     */
    9191    public ExtensionsT getExtensions() {
     
    9595    /**
    9696     * Sets the value of the extensions property.
    97      * 
     97     *
    9898     * @param value
    9999     *     allowed object is
    100100     *     {@link ExtensionsT }
    101      *     
     101     *
    102102     */
    103103    public void setExtensions(ExtensionsT value) {
     
    107107    /**
    108108     * Gets the value of the type property.
    109      * 
     109     *
    110110     * @return
    111111     *     possible object is
    112112     *     {@link TrainingTypeT }
    113      *     
     113     *
    114114     */
    115115    public TrainingTypeT getType() {
     
    119119    /**
    120120     * Sets the value of the type property.
    121      * 
     121     *
    122122     * @param value
    123123     *     allowed object is
    124124     *     {@link TrainingTypeT }
    125      *     
     125     *
    126126     */
    127127    public void setType(TrainingTypeT value) {
     
    131131    /**
    132132     * Gets the value of the intervalWorkout property.
    133      * 
     133     *
    134134     */
    135135    public boolean isIntervalWorkout() {
     
    139139    /**
    140140     * Sets the value of the intervalWorkout property.
    141      * 
     141     *
    142142     */
    143143    public void setIntervalWorkout(boolean value) {
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/PositionT.java

    r18063 r23191  
    11//
    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
    66//
    77
     
    1717/**
    1818 * <p>Java class for Position_t complex type.
    19  * 
     19 *
    2020 * <p>The following schema fragment specifies the expected content contained within this class.
    21  * 
     21 *
    2222 * <pre>
    2323 * &lt;complexType name="Position_t">
     
    3232 * &lt;/complexType>
    3333 * </pre>
    34  * 
    35  * 
     34 *
     35 *
    3636 */
    3737@XmlAccessorType(XmlAccessType.FIELD)
     
    4949    /**
    5050     * Gets the value of the latitudeDegrees property.
    51      * 
     51     *
    5252     */
    5353    public double getLatitudeDegrees() {
     
    5757    /**
    5858     * Sets the value of the latitudeDegrees property.
    59      * 
     59     *
    6060     */
    6161    public void setLatitudeDegrees(double value) {
     
    6565    /**
    6666     * Gets the value of the longitudeDegrees property.
    67      * 
     67     *
    6868     */
    6969    public double getLongitudeDegrees() {
     
    7373    /**
    7474     * Sets the value of the longitudeDegrees property.
    75      * 
     75     *
    7676     */
    7777    public void setLongitudeDegrees(double value) {
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/PredefinedHeartRateZoneT.java

    r18063 r23191  
    11//
    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
    66//
    77
     
    1717/**
    1818 * <p>Java class for PredefinedHeartRateZone_t complex type.
    19  * 
     19 *
    2020 * <p>The following schema fragment specifies the expected content contained within this class.
    21  * 
     21 *
    2222 * <pre>
    2323 * &lt;complexType name="PredefinedHeartRateZone_t">
     
    3131 * &lt;/complexType>
    3232 * </pre>
    33  * 
    34  * 
     33 *
     34 *
    3535 */
    3636@XmlAccessorType(XmlAccessType.FIELD)
     
    4747    /**
    4848     * Gets the value of the number property.
    49      * 
     49     *
    5050     */
    5151    public int getNumber() {
     
    5555    /**
    5656     * Sets the value of the number property.
    57      * 
     57     *
    5858     */
    5959    public void setNumber(int value) {
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/PredefinedSpeedZoneT.java

    r18063 r23191  
    11//
    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
    66//
    77
     
    1717/**
    1818 * <p>Java class for PredefinedSpeedZone_t complex type.
    19  * 
     19 *
    2020 * <p>The following schema fragment specifies the expected content contained within this class.
    21  * 
     21 *
    2222 * <pre>
    2323 * &lt;complexType name="PredefinedSpeedZone_t">
     
    3131 * &lt;/complexType>
    3232 * </pre>
    33  * 
    34  * 
     33 *
     34 *
    3535 */
    3636@XmlAccessorType(XmlAccessType.FIELD)
     
    4747    /**
    4848     * Gets the value of the number property.
    49      * 
     49     *
    5050     */
    5151    public int getNumber() {
     
    5555    /**
    5656     * Sets the value of the number property.
    57      * 
     57     *
    5858     */
    5959    public void setNumber(int value) {
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/QuickWorkoutT.java

    r18063 r23191  
    11//
    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
    66//
    77
     
    1717/**
    1818 * <p>Java class for QuickWorkout_t complex type.
    19  * 
     19 *
    2020 * <p>The following schema fragment specifies the expected content contained within this class.
    21  * 
     21 *
    2222 * <pre>
    2323 * &lt;complexType name="QuickWorkout_t">
     
    3232 * &lt;/complexType>
    3333 * </pre>
    34  * 
    35  * 
     34 *
     35 *
    3636 */
    3737@XmlAccessorType(XmlAccessType.FIELD)
     
    4949    /**
    5050     * Gets the value of the totalTimeSeconds property.
    51      * 
     51     *
    5252     */
    5353    public double getTotalTimeSeconds() {
     
    5757    /**
    5858     * Sets the value of the totalTimeSeconds property.
    59      * 
     59     *
    6060     */
    6161    public void setTotalTimeSeconds(double value) {
     
    6565    /**
    6666     * Gets the value of the distanceMeters property.
    67      * 
     67     *
    6868     */
    6969    public double getDistanceMeters() {
     
    7373    /**
    7474     * Sets the value of the distanceMeters property.
    75      * 
     75     *
    7676     */
    7777    public void setDistanceMeters(double value) {
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/RepeatT.java

    r18063 r23191  
    11//
    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
    66//
    77
     
    1919/**
    2020 * <p>Java class for Repeat_t complex type.
    21  * 
     21 *
    2222 * <p>The following schema fragment specifies the expected content contained within this class.
    23  * 
     23 *
    2424 * <pre>
    2525 * &lt;complexType name="Repeat_t">
     
    3434 * &lt;/complexType>
    3535 * </pre>
    36  * 
    37  * 
     36 *
     37 *
    3838 */
    3939@XmlAccessorType(XmlAccessType.FIELD)
     
    5353    /**
    5454     * Gets the value of the repetitions property.
    55      * 
     55     *
    5656     */
    5757    public int getRepetitions() {
     
    6161    /**
    6262     * Sets the value of the repetitions property.
    63      * 
     63     *
    6464     */
    6565    public void setRepetitions(int value) {
     
    6969    /**
    7070     * Gets the value of the child property.
    71      * 
     71     *
    7272     * <p>
    7373     * This accessor method returns a reference to the live list,
     
    7575     * returned list will be present inside the JAXB object.
    7676     * This is why there is not a <CODE>set</CODE> method for the child property.
    77      * 
     77     *
    7878     * <p>
    7979     * For example, to add a new item, do as follows:
     
    8181     *    getChild().add(newItem);
    8282     * </pre>
    83      * 
    84      * 
     83     *
     84     *
    8585     * <p>
    8686     * Objects of the following type(s) are allowed in the list
    8787     * {@link AbstractStepT }
    88      * 
    89      * 
     88     *
     89     *
    9090     */
    9191    public List<AbstractStepT> getChild() {
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/SensorStateT.java

    r18063 r23191  
    11//
    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
    66//
    77
     
    1616/**
    1717 * <p>Java class for SensorState_t.
    18  * 
     18 *
    1919 * <p>The following schema fragment specifies the expected content contained within this class.
    2020 * <p>
     
    2727 * &lt;/simpleType>
    2828 * </pre>
    29  * 
     29 *
    3030 */
    3131@XmlType(name = "SensorState_t")
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/SpeedT.java

    r18063 r23191  
    11//
    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
    66//
    77
     
    1717/**
    1818 * <p>Java class for Speed_t complex type.
    19  * 
     19 *
    2020 * <p>The following schema fragment specifies the expected content contained within this class.
    21  * 
     21 *
    2222 * <pre>
    2323 * &lt;complexType name="Speed_t">
     
    3131 * &lt;/complexType>
    3232 * </pre>
    33  * 
    34  * 
     33 *
     34 *
    3535 */
    3636@XmlAccessorType(XmlAccessType.FIELD)
     
    4747    /**
    4848     * Gets the value of the speedZone property.
    49      * 
     49     *
    5050     * @return
    5151     *     possible object is
    5252     *     {@link ZoneT }
    53      *     
     53     *
    5454     */
    5555    public ZoneT getSpeedZone() {
     
    5959    /**
    6060     * Sets the value of the speedZone property.
    61      * 
     61     *
    6262     * @param value
    6363     *     allowed object is
    6464     *     {@link ZoneT }
    65      *     
     65     *
    6666     */
    6767    public void setSpeedZone(ZoneT value) {
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/SpeedTypeT.java

    r18063 r23191  
    11//
    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
    66//
    77
     
    1616/**
    1717 * <p>Java class for SpeedType_t.
    18  * 
     18 *
    1919 * <p>The following schema fragment specifies the expected content contained within this class.
    2020 * <p>
     
    2727 * &lt;/simpleType>
    2828 * </pre>
    29  * 
     29 *
    3030 */
    3131@XmlType(name = "SpeedType_t")
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/SportT.java

    r18063 r23191  
    11//
    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
    66//
    77
     
    1616/**
    1717 * <p>Java class for Sport_t.
    18  * 
     18 *
    1919 * <p>The following schema fragment specifies the expected content contained within this class.
    2020 * <p>
     
    2828 * &lt;/simpleType>
    2929 * </pre>
    30  * 
     30 *
    3131 */
    3232@XmlType(name = "Sport_t")
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/StepT.java

    r18063 r23191  
    11//
    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
    66//
    77
     
    1919/**
    2020 * <p>Java class for Step_t complex type.
    21  * 
     21 *
    2222 * <p>The following schema fragment specifies the expected content contained within this class.
    23  * 
     23 *
    2424 * <pre>
    2525 * &lt;complexType name="Step_t">
     
    3636 * &lt;/complexType>
    3737 * </pre>
    38  * 
    39  * 
     38 *
     39 *
    4040 */
    4141@XmlAccessorType(XmlAccessType.FIELD)
     
    6262    /**
    6363     * Gets the value of the name property.
    64      * 
     64     *
    6565     * @return
    6666     *     possible object is
    6767     *     {@link String }
    68      *     
     68     *
    6969     */
    7070    public String getName() {
     
    7474    /**
    7575     * Sets the value of the name property.
    76      * 
     76     *
    7777     * @param value
    7878     *     allowed object is
    7979     *     {@link String }
    80      *     
     80     *
    8181     */
    8282    public void setName(String value) {
     
    8686    /**
    8787     * Gets the value of the duration property.
    88      * 
     88     *
    8989     * @return
    9090     *     possible object is
    9191     *     {@link DurationT }
    92      *     
     92     *
    9393     */
    9494    public DurationT getDuration() {
     
    9898    /**
    9999     * Sets the value of the duration property.
    100      * 
     100     *
    101101     * @param value
    102102     *     allowed object is
    103103     *     {@link DurationT }
    104      *     
     104     *
    105105     */
    106106    public void setDuration(DurationT value) {
     
    110110    /**
    111111     * Gets the value of the intensity property.
    112      * 
     112     *
    113113     * @return
    114114     *     possible object is
    115115     *     {@link IntensityT }
    116      *     
     116     *
    117117     */
    118118    public IntensityT getIntensity() {
     
    122122    /**
    123123     * Sets the value of the intensity property.
    124      * 
     124     *
    125125     * @param value
    126126     *     allowed object is
    127127     *     {@link IntensityT }
    128      *     
     128     *
    129129     */
    130130    public void setIntensity(IntensityT value) {
     
    134134    /**
    135135     * Gets the value of the target property.
    136      * 
     136     *
    137137     * @return
    138138     *     possible object is
    139139     *     {@link TargetT }
    140      *     
     140     *
    141141     */
    142142    public TargetT getTarget() {
     
    146146    /**
    147147     * Sets the value of the target property.
    148      * 
     148     *
    149149     * @param value
    150150     *     allowed object is
    151151     *     {@link TargetT }
    152      *     
     152     *
    153153     */
    154154    public void setTarget(TargetT value) {
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/TargetT.java

    r18063 r23191  
    11//
    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
    66//
    77
     
    1717/**
    1818 * <p>Java class for Target_t complex type.
    19  * 
     19 *
    2020 * <p>The following schema fragment specifies the expected content contained within this class.
    21  * 
     21 *
    2222 * <pre>
    2323 * &lt;complexType name="Target_t">
     
    2828 * &lt;/complexType>
    2929 * </pre>
    30  * 
    31  * 
     30 *
     31 *
    3232 */
    3333@XmlAccessorType(XmlAccessType.FIELD)
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/TimeT.java

    r18063 r23191  
    11//
    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
    66//
    77
     
    1818/**
    1919 * <p>Java class for Time_t complex type.
    20  * 
     20 *
    2121 * <p>The following schema fragment specifies the expected content contained within this class.
    22  * 
     22 *
    2323 * <pre>
    2424 * &lt;complexType name="Time_t">
     
    3232 * &lt;/complexType>
    3333 * </pre>
    34  * 
    35  * 
     34 *
     35 *
    3636 */
    3737@XmlAccessorType(XmlAccessType.FIELD)
     
    4949    /**
    5050     * Gets the value of the seconds property.
    51      * 
     51     *
    5252     */
    5353    public int getSeconds() {
     
    5757    /**
    5858     * Sets the value of the seconds property.
    59      * 
     59     *
    6060     */
    6161    public void setSeconds(int value) {
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/TrackT.java

    r18063 r23191  
    11//
    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
    66//
    77
     
    1919/**
    2020 * <p>Java class for Track_t complex type.
    21  * 
     21 *
    2222 * <p>The following schema fragment specifies the expected content contained within this class.
    23  * 
     23 *
    2424 * <pre>
    2525 * &lt;complexType name="Track_t">
     
    3333 * &lt;/complexType>
    3434 * </pre>
    35  * 
    36  * 
     35 *
     36 *
    3737 */
    3838@XmlAccessorType(XmlAccessType.FIELD)
     
    4747    /**
    4848     * Gets the value of the trackpoint property.
    49      * 
     49     *
    5050     * <p>
    5151     * This accessor method returns a reference to the live list,
     
    5353     * returned list will be present inside the JAXB object.
    5454     * This is why there is not a <CODE>set</CODE> method for the trackpoint property.
    55      * 
     55     *
    5656     * <p>
    5757     * For example, to add a new item, do as follows:
     
    5959     *    getTrackpoint().add(newItem);
    6060     * </pre>
    61      * 
    62      * 
     61     *
     62     *
    6363     * <p>
    6464     * Objects of the following type(s) are allowed in the list
    6565     * {@link TrackpointT }
    66      * 
    67      * 
     66     *
     67     *
    6868     */
    6969    public List<TrackpointT> getTrackpoint() {
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/TrackpointT.java

    r18063 r23191  
    11//
    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
    66//
    77
     
    1919/**
    2020 * <p>Java class for Trackpoint_t complex type.
    21  * 
     21 *
    2222 * <p>The following schema fragment specifies the expected content contained within this class.
    23  * 
     23 *
    2424 * <pre>
    2525 * &lt;complexType name="Trackpoint_t">
     
    4040 * &lt;/complexType>
    4141 * </pre>
    42  * 
    43  * 
     42 *
     43 *
    4444 */
    4545@XmlAccessorType(XmlAccessType.FIELD)
     
    7676    /**
    7777     * Gets the value of the time property.
    78      * 
     78     *
    7979     * @return
    8080     *     possible object is
    8181     *     {@link XMLGregorianCalendar }
    82      *     
     82     *
    8383     */
    8484    public XMLGregorianCalendar getTime() {
     
    8888    /**
    8989     * Sets the value of the time property.
    90      * 
     90     *
    9191     * @param value
    9292     *     allowed object is
    9393     *     {@link XMLGregorianCalendar }
    94      *     
     94     *
    9595     */
    9696    public void setTime(XMLGregorianCalendar value) {
     
    100100    /**
    101101     * Gets the value of the position property.
    102      * 
     102     *
    103103     * @return
    104104     *     possible object is
    105105     *     {@link PositionT }
    106      *     
     106     *
    107107     */
    108108    public PositionT getPosition() {
     
    112112    /**
    113113     * Sets the value of the position property.
    114      * 
     114     *
    115115     * @param value
    116116     *     allowed object is
    117117     *     {@link PositionT }
    118      *     
     118     *
    119119     */
    120120    public void setPosition(PositionT value) {
     
    124124    /**
    125125     * 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     *
    131131     */
    132132    public Double getAltitudeMeters() {
     
    136136    /**
    137137     * 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     *
    143143     */
    144144    public void setAltitudeMeters(Double value) {
     
    148148    /**
    149149     * 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     *
    155155     */
    156156    public Double getDistanceMeters() {
     
    160160    /**
    161161     * 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     *
    167167     */
    168168    public void setDistanceMeters(Double value) {
     
    172172    /**
    173173     * Gets the value of the heartRateBpm property.
    174      * 
     174     *
    175175     * @return
    176176     *     possible object is
    177177     *     {@link HeartRateInBeatsPerMinuteT }
    178      *     
     178     *
    179179     */
    180180    public HeartRateInBeatsPerMinuteT getHeartRateBpm() {
     
    184184    /**
    185185     * Sets the value of the heartRateBpm property.
    186      * 
     186     *
    187187     * @param value
    188188     *     allowed object is
    189189     *     {@link HeartRateInBeatsPerMinuteT }
    190      *     
     190     *
    191191     */
    192192    public void setHeartRateBpm(HeartRateInBeatsPerMinuteT value) {
     
    196196    /**
    197197     * Gets the value of the cadence property.
    198      * 
     198     *
    199199     * @return
    200200     *     possible object is
    201201     *     {@link Short }
    202      *     
     202     *
    203203     */
    204204    public Short getCadence() {
     
    208208    /**
    209209     * Sets the value of the cadence property.
    210      * 
     210     *
    211211     * @param value
    212212     *     allowed object is
    213213     *     {@link Short }
    214      *     
     214     *
    215215     */
    216216    public void setCadence(Short value) {
     
    220220    /**
    221221     * Gets the value of the sensorState property.
    222      * 
     222     *
    223223     * @return
    224224     *     possible object is
    225225     *     {@link SensorStateT }
    226      *     
     226     *
    227227     */
    228228    public SensorStateT getSensorState() {
     
    232232    /**
    233233     * Sets the value of the sensorState property.
    234      * 
     234     *
    235235     * @param value
    236236     *     allowed object is
    237237     *     {@link SensorStateT }
    238      *     
     238     *
    239239     */
    240240    public void setSensorState(SensorStateT value) {
     
    244244    /**
    245245     * Gets the value of the extensions property.
    246      * 
     246     *
    247247     * @return
    248248     *     possible object is
    249249     *     {@link ExtensionsT }
    250      *     
     250     *
    251251     */
    252252    public ExtensionsT getExtensions() {
     
    256256    /**
    257257     * Sets the value of the extensions property.
    258      * 
     258     *
    259259     * @param value
    260260     *     allowed object is
    261261     *     {@link ExtensionsT }
    262      *     
     262     *
    263263     */
    264264    public void setExtensions(ExtensionsT value) {
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/TrainingCenterDatabaseT.java

    r18063 r23191  
    11//
    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
    66//
    77
     
    1717/**
    1818 * <p>Java class for TrainingCenterDatabase_t complex type.
    19  * 
     19 *
    2020 * <p>The following schema fragment specifies the expected content contained within this class.
    21  * 
     21 *
    2222 * <pre>
    2323 * &lt;complexType name="TrainingCenterDatabase_t">
     
    3636 * &lt;/complexType>
    3737 * </pre>
    38  * 
    39  * 
     38 *
     39 *
    4040 */
    4141@XmlAccessorType(XmlAccessType.FIELD)
     
    6565    /**
    6666     * Gets the value of the folders property.
    67      * 
     67     *
    6868     * @return
    6969     *     possible object is
    7070     *     {@link FoldersT }
    71      *     
     71     *
    7272     */
    7373    public FoldersT getFolders() {
     
    7777    /**
    7878     * Sets the value of the folders property.
    79      * 
     79     *
    8080     * @param value
    8181     *     allowed object is
    8282     *     {@link FoldersT }
    83      *     
     83     *
    8484     */
    8585    public void setFolders(FoldersT value) {
     
    8989    /**
    9090     * Gets the value of the activities property.
    91      * 
     91     *
    9292     * @return
    9393     *     possible object is
    9494     *     {@link ActivityListT }
    95      *     
     95     *
    9696     */
    9797    public ActivityListT getActivities() {
     
    101101    /**
    102102     * Sets the value of the activities property.
    103      * 
     103     *
    104104     * @param value
    105105     *     allowed object is
    106106     *     {@link ActivityListT }
    107      *     
     107     *
    108108     */
    109109    public void setActivities(ActivityListT value) {
     
    113113    /**
    114114     * Gets the value of the workouts property.
    115      * 
     115     *
    116116     * @return
    117117     *     possible object is
    118118     *     {@link WorkoutListT }
    119      *     
     119     *
    120120     */
    121121    public WorkoutListT getWorkouts() {
     
    125125    /**
    126126     * Sets the value of the workouts property.
    127      * 
     127     *
    128128     * @param value
    129129     *     allowed object is
    130130     *     {@link WorkoutListT }
    131      *     
     131     *
    132132     */
    133133    public void setWorkouts(WorkoutListT value) {
     
    137137    /**
    138138     * Gets the value of the courses property.
    139      * 
     139     *
    140140     * @return
    141141     *     possible object is
    142142     *     {@link CourseListT }
    143      *     
     143     *
    144144     */
    145145    public CourseListT getCourses() {
     
    149149    /**
    150150     * Sets the value of the courses property.
    151      * 
     151     *
    152152     * @param value
    153153     *     allowed object is
    154154     *     {@link CourseListT }
    155      *     
     155     *
    156156     */
    157157    public void setCourses(CourseListT value) {
     
    161161    /**
    162162     * Gets the value of the author property.
    163      * 
     163     *
    164164     * @return
    165165     *     possible object is
    166166     *     {@link AbstractSourceT }
    167      *     
     167     *
    168168     */
    169169    public AbstractSourceT getAuthor() {
     
    173173    /**
    174174     * Sets the value of the author property.
    175      * 
     175     *
    176176     * @param value
    177177     *     allowed object is
    178178     *     {@link AbstractSourceT }
    179      *     
     179     *
    180180     */
    181181    public void setAuthor(AbstractSourceT value) {
     
    185185    /**
    186186     * Gets the value of the extensions property.
    187      * 
     187     *
    188188     * @return
    189189     *     possible object is
    190190     *     {@link ExtensionsT }
    191      *     
     191     *
    192192     */
    193193    public ExtensionsT getExtensions() {
     
    197197    /**
    198198     * Sets the value of the extensions property.
    199      * 
     199     *
    200200     * @param value
    201201     *     allowed object is
    202202     *     {@link ExtensionsT }
    203      *     
     203     *
    204204     */
    205205    public void setExtensions(ExtensionsT value) {
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/TrainingT.java

    r18063 r23191  
    11//
    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
    66//
    77
     
    1818/**
    1919 * <p>Java class for Training_t complex type.
    20  * 
     20 *
    2121 * <p>The following schema fragment specifies the expected content contained within this class.
    22  * 
     22 *
    2323 * <pre>
    2424 * &lt;complexType name="Training_t">
     
    3434 * &lt;/complexType>
    3535 * </pre>
    36  * 
    37  * 
     36 *
     37 *
    3838 */
    3939@XmlAccessorType(XmlAccessType.FIELD)
     
    5353    /**
    5454     * Gets the value of the quickWorkoutResults property.
    55      * 
     55     *
    5656     * @return
    5757     *     possible object is
    5858     *     {@link QuickWorkoutT }
    59      *     
     59     *
    6060     */
    6161    public QuickWorkoutT getQuickWorkoutResults() {
     
    6565    /**
    6666     * Sets the value of the quickWorkoutResults property.
    67      * 
     67     *
    6868     * @param value
    6969     *     allowed object is
    7070     *     {@link QuickWorkoutT }
    71      *     
     71     *
    7272     */
    7373    public void setQuickWorkoutResults(QuickWorkoutT value) {
     
    7777    /**
    7878     * Gets the value of the plan property.
    79      * 
     79     *
    8080     * @return
    8181     *     possible object is
    8282     *     {@link PlanT }
    83      *     
     83     *
    8484     */
    8585    public PlanT getPlan() {
     
    8989    /**
    9090     * Sets the value of the plan property.
    91      * 
     91     *
    9292     * @param value
    9393     *     allowed object is
    9494     *     {@link PlanT }
    95      *     
     95     *
    9696     */
    9797    public void setPlan(PlanT value) {
     
    101101    /**
    102102     * Gets the value of the virtualPartner property.
    103      * 
     103     *
    104104     */
    105105    public boolean isVirtualPartner() {
     
    109109    /**
    110110     * Sets the value of the virtualPartner property.
    111      * 
     111     *
    112112     */
    113113    public void setVirtualPartner(boolean value) {
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/TrainingTypeT.java

    r18063 r23191  
    11//
    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
    66//
    77
     
    1616/**
    1717 * <p>Java class for TrainingType_t.
    18  * 
     18 *
    1919 * <p>The following schema fragment specifies the expected content contained within this class.
    2020 * <p>
     
    2727 * &lt;/simpleType>
    2828 * </pre>
    29  * 
     29 *
    3030 */
    3131@XmlType(name = "TrainingType_t")
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/TriggerMethodT.java

    r18063 r23191  
    11//
    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
    66//
    77
     
    1616/**
    1717 * <p>Java class for TriggerMethod_t.
    18  * 
     18 *
    1919 * <p>The following schema fragment specifies the expected content contained within this class.
    2020 * <p>
     
    3030 * &lt;/simpleType>
    3131 * </pre>
    32  * 
     32 *
    3333 */
    3434@XmlType(name = "TriggerMethod_t")
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/UserInitiatedT.java

    r18063 r23191  
    11//
    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
    66//
    77
     
    1616/**
    1717 * <p>Java class for UserInitiated_t complex type.
    18  * 
     18 *
    1919 * <p>The following schema fragment specifies the expected content contained within this class.
    20  * 
     20 *
    2121 * <pre>
    2222 * &lt;complexType name="UserInitiated_t">
     
    2727 * &lt;/complexType>
    2828 * </pre>
    29  * 
    30  * 
     29 *
     30 *
    3131 */
    3232@XmlAccessorType(XmlAccessType.FIELD)
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/VersionT.java

    r18063 r23191  
    11//
    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
    66//
    77
     
    1818/**
    1919 * <p>Java class for Version_t complex type.
    20  * 
     20 *
    2121 * <p>The following schema fragment specifies the expected content contained within this class.
    22  * 
     22 *
    2323 * <pre>
    2424 * &lt;complexType name="Version_t">
     
    3535 * &lt;/complexType>
    3636 * </pre>
    37  * 
    38  * 
     37 *
     38 *
    3939 */
    4040@XmlAccessorType(XmlAccessType.FIELD)
     
    6262    /**
    6363     * Gets the value of the versionMajor property.
    64      * 
     64     *
    6565     */
    6666    public int getVersionMajor() {
     
    7070    /**
    7171     * Sets the value of the versionMajor property.
    72      * 
     72     *
    7373     */
    7474    public void setVersionMajor(int value) {
     
    7878    /**
    7979     * Gets the value of the versionMinor property.
    80      * 
     80     *
    8181     */
    8282    public int getVersionMinor() {
     
    8686    /**
    8787     * Sets the value of the versionMinor property.
    88      * 
     88     *
    8989     */
    9090    public void setVersionMinor(int value) {
     
    9494    /**
    9595     * Gets the value of the buildMajor property.
    96      * 
     96     *
    9797     * @return
    9898     *     possible object is
    9999     *     {@link Integer }
    100      *     
     100     *
    101101     */
    102102    public Integer getBuildMajor() {
     
    106106    /**
    107107     * Sets the value of the buildMajor property.
    108      * 
     108     *
    109109     * @param value
    110110     *     allowed object is
    111111     *     {@link Integer }
    112      *     
     112     *
    113113     */
    114114    public void setBuildMajor(Integer value) {
     
    118118    /**
    119119     * Gets the value of the buildMinor property.
    120      * 
     120     *
    121121     * @return
    122122     *     possible object is
    123123     *     {@link Integer }
    124      *     
     124     *
    125125     */
    126126    public Integer getBuildMinor() {
     
    130130    /**
    131131     * Sets the value of the buildMinor property.
    132      * 
     132     *
    133133     * @param value
    134134     *     allowed object is
    135135     *     {@link Integer }
    136      *     
     136     *
    137137     */
    138138    public void setBuildMinor(Integer value) {
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/WeekT.java

    r18063 r23191  
    11//
    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
    66//
    77
     
    2020/**
    2121 * <p>Java class for Week_t complex type.
    22  * 
     22 *
    2323 * <p>The following schema fragment specifies the expected content contained within this class.
    24  * 
     24 *
    2525 * <pre>
    2626 * &lt;complexType name="Week_t">
     
    3535 * &lt;/complexType>
    3636 * </pre>
    37  * 
    38  * 
     37 *
     38 *
    3939 */
    4040@XmlAccessorType(XmlAccessType.FIELD)
     
    5252    /**
    5353     * Gets the value of the notes property.
    54      * 
     54     *
    5555     * @return
    5656     *     possible object is
    5757     *     {@link String }
    58      *     
     58     *
    5959     */
    6060    public String getNotes() {
     
    6464    /**
    6565     * Sets the value of the notes property.
    66      * 
     66     *
    6767     * @param value
    6868     *     allowed object is
    6969     *     {@link String }
    70      *     
     70     *
    7171     */
    7272    public void setNotes(String value) {
     
    7676    /**
    7777     * Gets the value of the startDay property.
    78      * 
     78     *
    7979     * @return
    8080     *     possible object is
    8181     *     {@link XMLGregorianCalendar }
    82      *     
     82     *
    8383     */
    8484    public XMLGregorianCalendar getStartDay() {
     
    8888    /**
    8989     * Sets the value of the startDay property.
    90      * 
     90     *
    9191     * @param value
    9292     *     allowed object is
    9393     *     {@link XMLGregorianCalendar }
    94      *     
     94     *
    9595     */
    9696    public void setStartDay(XMLGregorianCalendar value) {
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/WorkoutFolderT.java

    r18063 r23191  
    11//
    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
    66//
    77
     
    2020/**
    2121 * <p>Java class for WorkoutFolder_t complex type.
    22  * 
     22 *
    2323 * <p>The following schema fragment specifies the expected content contained within this class.
    24  * 
     24 *
    2525 * <pre>
    2626 * &lt;complexType name="WorkoutFolder_t">
     
    3737 * &lt;/complexType>
    3838 * </pre>
    39  * 
    40  * 
     39 *
     40 *
    4141 */
    4242@XmlAccessorType(XmlAccessType.FIELD)
     
    5959    /**
    6060     * Gets the value of the folder property.
    61      * 
     61     *
    6262     * <p>
    6363     * This accessor method returns a reference to the live list,
     
    6565     * returned list will be present inside the JAXB object.
    6666     * This is why there is not a <CODE>set</CODE> method for the folder property.
    67      * 
     67     *
    6868     * <p>
    6969     * For example, to add a new item, do as follows:
     
    7171     *    getFolder().add(newItem);
    7272     * </pre>
    73      * 
    74      * 
     73     *
     74     *
    7575     * <p>
    7676     * Objects of the following type(s) are allowed in the list
    7777     * {@link WorkoutFolderT }
    78      * 
    79      * 
     78     *
     79     *
    8080     */
    8181    public List<WorkoutFolderT> getFolder() {
     
    8888    /**
    8989     * Gets the value of the workoutNameRef property.
    90      * 
     90     *
    9191     * <p>
    9292     * This accessor method returns a reference to the live list,
     
    9494     * returned list will be present inside the JAXB object.
    9595     * This is why there is not a <CODE>set</CODE> method for the workoutNameRef property.
    96      * 
     96     *
    9797     * <p>
    9898     * For example, to add a new item, do as follows:
     
    100100     *    getWorkoutNameRef().add(newItem);
    101101     * </pre>
    102      * 
    103      * 
     102     *
     103     *
    104104     * <p>
    105105     * Objects of the following type(s) are allowed in the list
    106106     * {@link NameKeyReferenceT }
    107      * 
    108      * 
     107     *
     108     *
    109109     */
    110110    public List<NameKeyReferenceT> getWorkoutNameRef() {
     
    117117    /**
    118118     * Gets the value of the extensions property.
    119      * 
     119     *
    120120     * @return
    121121     *     possible object is
    122122     *     {@link ExtensionsT }
    123      *     
     123     *
    124124     */
    125125    public ExtensionsT getExtensions() {
     
    129129    /**
    130130     * Sets the value of the extensions property.
    131      * 
     131     *
    132132     * @param value
    133133     *     allowed object is
    134134     *     {@link ExtensionsT }
    135      *     
     135     *
    136136     */
    137137    public void setExtensions(ExtensionsT value) {
     
    141141    /**
    142142     * Gets the value of the name property.
    143      * 
     143     *
    144144     * @return
    145145     *     possible object is
    146146     *     {@link String }
    147      *     
     147     *
    148148     */
    149149    public String getName() {
     
    153153    /**
    154154     * Sets the value of the name property.
    155      * 
     155     *
    156156     * @param value
    157157     *     allowed object is
    158158     *     {@link String }
    159      *     
     159     *
    160160     */
    161161    public void setName(String value) {
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/WorkoutListT.java

    r18063 r23191  
    11//
    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
    66//
    77
     
    1919/**
    2020 * <p>Java class for WorkoutList_t complex type.
    21  * 
     21 *
    2222 * <p>The following schema fragment specifies the expected content contained within this class.
    23  * 
     23 *
    2424 * <pre>
    2525 * &lt;complexType name="WorkoutList_t">
     
    3333 * &lt;/complexType>
    3434 * </pre>
    35  * 
    36  * 
     35 *
     36 *
    3737 */
    3838@XmlAccessorType(XmlAccessType.FIELD)
     
    4747    /**
    4848     * Gets the value of the workout property.
    49      * 
     49     *
    5050     * <p>
    5151     * This accessor method returns a reference to the live list,
     
    5353     * returned list will be present inside the JAXB object.
    5454     * This is why there is not a <CODE>set</CODE> method for the workout property.
    55      * 
     55     *
    5656     * <p>
    5757     * For example, to add a new item, do as follows:
     
    5959     *    getWorkout().add(newItem);
    6060     * </pre>
    61      * 
    62      * 
     61     *
     62     *
    6363     * <p>
    6464     * Objects of the following type(s) are allowed in the list
    6565     * {@link WorkoutT }
    66      * 
    67      * 
     66     *
     67     *
    6868     */
    6969    public List<WorkoutT> getWorkout() {
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/WorkoutT.java

    r18063 r23191  
    11//
    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
    66//
    77
     
    2424/**
    2525 * <p>Java class for Workout_t complex type.
    26  * 
     26 *
    2727 * <p>The following schema fragment specifies the expected content contained within this class.
    28  * 
     28 *
    2929 * <pre>
    3030 * &lt;complexType name="Workout_t">
     
    4444 * &lt;/complexType>
    4545 * </pre>
    46  * 
    47  * 
     46 *
     47 *
    4848 */
    4949@XmlAccessorType(XmlAccessType.FIELD)
     
    7777    /**
    7878     * 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     *
    8484     */
    8585    public String getName() {
     
    8989    /**
    9090     * 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     *
    9696     */
    9797    public void setName(String value) {
     
    101101    /**
    102102     * Gets the value of the step property.
    103      * 
     103     *
    104104     * <p>
    105105     * This accessor method returns a reference to the live list,
     
    107107     * returned list will be present inside the JAXB object.
    108108     * This is why there is not a <CODE>set</CODE> method for the step property.
    109      * 
     109     *
    110110     * <p>
    111111     * For example, to add a new item, do as follows:
     
    113113     *    getStep().add(newItem);
    114114     * </pre>
    115      * 
    116      * 
     115     *
     116     *
    117117     * <p>
    118118     * Objects of the following type(s) are allowed in the list
    119119     * {@link AbstractStepT }
    120      * 
    121      * 
     120     *
     121     *
    122122     */
    123123    public List<AbstractStepT> getStep() {
     
    130130    /**
    131131     * Gets the value of the scheduledOn property.
    132      * 
     132     *
    133133     * <p>
    134134     * This accessor method returns a reference to the live list,
     
    136136     * returned list will be present inside the JAXB object.
    137137     * This is why there is not a <CODE>set</CODE> method for the scheduledOn property.
    138      * 
     138     *
    139139     * <p>
    140140     * For example, to add a new item, do as follows:
     
    142142     *    getScheduledOn().add(newItem);
    143143     * </pre>
    144      * 
    145      * 
     144     *
     145     *
    146146     * <p>
    147147     * Objects of the following type(s) are allowed in the list
    148148     * {@link XMLGregorianCalendar }
    149      * 
    150      * 
     149     *
     150     *
    151151     */
    152152    public List<XMLGregorianCalendar> getScheduledOn() {
     
    159159    /**
    160160     * 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     *
    166166     */
    167167    public String getNotes() {
     
    171171    /**
    172172     * 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     *
    178178     */
    179179    public void setNotes(String value) {
     
    183183    /**
    184184     * Gets the value of the creator property.
    185      * 
     185     *
    186186     * @return
    187187     *     possible object is
    188188     *     {@link AbstractSourceT }
    189      *     
     189     *
    190190     */
    191191    public AbstractSourceT getCreator() {
     
    195195    /**
    196196     * Sets the value of the creator property.
    197      * 
     197     *
    198198     * @param value
    199199     *     allowed object is
    200200     *     {@link AbstractSourceT }
    201      *     
     201     *
    202202     */
    203203    public void setCreator(AbstractSourceT value) {
     
    207207    /**
    208208     * Gets the value of the extensions property.
    209      * 
     209     *
    210210     * @return
    211211     *     possible object is
    212212     *     {@link ExtensionsT }
    213      *     
     213     *
    214214     */
    215215    public ExtensionsT getExtensions() {
     
    219219    /**
    220220     * Sets the value of the extensions property.
    221      * 
     221     *
    222222     * @param value
    223223     *     allowed object is
    224224     *     {@link ExtensionsT }
    225      *     
     225     *
    226226     */
    227227    public void setExtensions(ExtensionsT value) {
     
    231231    /**
    232232     * Gets the value of the sport property.
    233      * 
     233     *
    234234     * @return
    235235     *     possible object is
    236236     *     {@link SportT }
    237      *     
     237     *
    238238     */
    239239    public SportT getSport() {
     
    243243    /**
    244244     * Sets the value of the sport property.
    245      * 
     245     *
    246246     * @param value
    247247     *     allowed object is
    248248     *     {@link SportT }
    249      *     
     249     *
    250250     */
    251251    public void setSport(SportT value) {
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/WorkoutsT.java

    r18063 r23191  
    11//
    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
    66//
    77
     
    1717/**
    1818 * <p>Java class for Workouts_t complex type.
    19  * 
     19 *
    2020 * <p>The following schema fragment specifies the expected content contained within this class.
    21  * 
     21 *
    2222 * <pre>
    2323 * &lt;complexType name="Workouts_t">
     
    3434 * &lt;/complexType>
    3535 * </pre>
    36  * 
    37  * 
     36 *
     37 *
    3838 */
    3939@XmlAccessorType(XmlAccessType.FIELD)
     
    5757    /**
    5858     * Gets the value of the running property.
    59      * 
     59     *
    6060     * @return
    6161     *     possible object is
    6262     *     {@link WorkoutFolderT }
    63      *     
     63     *
    6464     */
    6565    public WorkoutFolderT getRunning() {
     
    6969    /**
    7070     * Sets the value of the running property.
    71      * 
     71     *
    7272     * @param value
    7373     *     allowed object is
    7474     *     {@link WorkoutFolderT }
    75      *     
     75     *
    7676     */
    7777    public void setRunning(WorkoutFolderT value) {
     
    8181    /**
    8282     * Gets the value of the biking property.
    83      * 
     83     *
    8484     * @return
    8585     *     possible object is
    8686     *     {@link WorkoutFolderT }
    87      *     
     87     *
    8888     */
    8989    public WorkoutFolderT getBiking() {
     
    9393    /**
    9494     * Sets the value of the biking property.
    95      * 
     95     *
    9696     * @param value
    9797     *     allowed object is
    9898     *     {@link WorkoutFolderT }
    99      *     
     99     *
    100100     */
    101101    public void setBiking(WorkoutFolderT value) {
     
    105105    /**
    106106     * Gets the value of the other property.
    107      * 
     107     *
    108108     * @return
    109109     *     possible object is
    110110     *     {@link WorkoutFolderT }
    111      *     
     111     *
    112112     */
    113113    public WorkoutFolderT getOther() {
     
    117117    /**
    118118     * Sets the value of the other property.
    119      * 
     119     *
    120120     * @param value
    121121     *     allowed object is
    122122     *     {@link WorkoutFolderT }
    123      *     
     123     *
    124124     */
    125125    public void setOther(WorkoutFolderT value) {
     
    129129    /**
    130130     * Gets the value of the extensions property.
    131      * 
     131     *
    132132     * @return
    133133     *     possible object is
    134134     *     {@link ExtensionsT }
    135      *     
     135     *
    136136     */
    137137    public ExtensionsT getExtensions() {
     
    141141    /**
    142142     * Sets the value of the extensions property.
    143      * 
     143     *
    144144     * @param value
    145145     *     allowed object is
    146146     *     {@link ExtensionsT }
    147      *     
     147     *
    148148     */
    149149    public void setExtensions(ExtensionsT value) {
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/ZoneT.java

    r18063 r23191  
    11//
    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
    66//
    77
     
    1717/**
    1818 * <p>Java class for Zone_t complex type.
    19  * 
     19 *
    2020 * <p>The following schema fragment specifies the expected content contained within this class.
    21  * 
     21 *
    2222 * <pre>
    2323 * &lt;complexType name="Zone_t">
     
    2828 * &lt;/complexType>
    2929 * </pre>
    30  * 
    31  * 
     30 *
     31 *
    3232 */
    3333@XmlAccessorType(XmlAccessType.FIELD)
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/package-info.java

    r18063 r23191  
    11//
    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
    66//
    77
Note: See TracChangeset for help on using the changeset viewer.