Changeset 18063 in osm for applications/editors/josm/plugins
- Timestamp:
- 2009-10-10T21:19:54+02:00 (15 years ago)
- Location:
- applications/editors/josm/plugins/dataimport
- Files:
-
- 1 added
- 72 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/dataimport/build.xml
r16382 r18063 93 93 <manifest> 94 94 <attribute name="Author" value="Dieter Muecke"/> 95 <attribute name="Plugin-Class" value="org.openstreetmap.josm.plugins. DataImport"/>95 <attribute name="Plugin-Class" value="org.openstreetmap.josm.plugins.dataimport.DataImportPlugin"/> 96 96 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/> 97 97 <attribute name="Plugin-Description" value="Allows to import various file formats into JOSM directly."/> -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/DataImportPlugin.java
r18052 r18063 1 1 /** 2 * This plugin leverages JOSM to import TangoGPSfiles.2 * This plugin leverages JOSM to import files. 3 3 */ 4 package org.openstreetmap.josm.plugins ;4 package org.openstreetmap.josm.plugins.dataimport; 5 5 6 6 import java.io.IOException; … … 9 9 import org.openstreetmap.josm.io.TangoGPS; 10 10 import org.openstreetmap.josm.io.Tcx; 11 import org.openstreetmap.josm.plugins.Plugin; 11 12 12 public class DataImport extends Plugin {13 public class DataImportPlugin extends Plugin { 13 14 14 15 /** 15 16 * Add new File import filter into open dialog 16 17 */ 17 public DataImport () throws IOException{18 public DataImportPlugin() throws IOException{ 18 19 super(); 19 20 … … 21 22 ExtensionFileFilter.importers.add(new Tcx()); 22 23 } 23 24 25 24 } -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/TangoGPS.java
r17702 r18063 2 2 * 3 3 */ 4 package org.openstreetmap.josm. io;4 package org.openstreetmap.josm.plugins.dataimport.io; 5 5 6 6 import static org.openstreetmap.josm.tools.I18n.tr; … … 24 24 import org.openstreetmap.josm.gui.layer.GpxLayer; 25 25 import org.openstreetmap.josm.gui.layer.markerlayer.MarkerLayer; 26 import org.openstreetmap.josm.io.FileImporter; 26 27 27 28 /** -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/Tcx.java
r16382 r18063 1 1 // License: GPL. For details, see LICENSE file. 2 package org.openstreetmap.josm. io;2 package org.openstreetmap.josm.plugins.dataimport.io; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; … … 23 23 import org.openstreetmap.josm.gui.layer.GpxLayer; 24 24 import org.openstreetmap.josm.gui.layer.markerlayer.MarkerLayer; 25 import org.openstreetmap.josm.io.tcx.ActivityLapT; 26 import org.openstreetmap.josm.io.tcx.ActivityT; 27 import org.openstreetmap.josm.io.tcx.CourseT; 28 import org.openstreetmap.josm.io.tcx.PositionT; 29 import org.openstreetmap.josm.io.tcx.TrackT; 30 import org.openstreetmap.josm.io.tcx.TrackpointT; 31 import org.openstreetmap.josm.io.tcx.TrainingCenterDatabaseT; 25 import org.openstreetmap.josm.io.FileImporter; 26 import org.openstreetmap.josm.plugins.dataimport.io.tcx.ActivityLapT; 27 import org.openstreetmap.josm.plugins.dataimport.io.tcx.ActivityT; 28 import org.openstreetmap.josm.plugins.dataimport.io.tcx.CourseT; 29 import org.openstreetmap.josm.plugins.dataimport.io.tcx.PositionT; 30 import org.openstreetmap.josm.plugins.dataimport.io.tcx.TrackT; 31 import org.openstreetmap.josm.plugins.dataimport.io.tcx.TrackpointT; 32 import org.openstreetmap.josm.plugins.dataimport.io.tcx.TrainingCenterDatabaseT; 32 33 33 34 -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/AbstractSourceT.java
r13497 r18063 7 7 8 8 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx; 10 10 11 11 import javax.xml.bind.annotation.XmlAccessType; -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/AbstractStepT.java
r13497 r18063 7 7 8 8 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx; 10 10 11 11 import javax.xml.bind.annotation.XmlAccessType; -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/ActivityLapT.java
r13497 r18063 7 7 8 8 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx; 10 10 11 11 import java.util.ArrayList; -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/ActivityListT.java
r13497 r18063 7 7 8 8 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx; 10 10 11 11 import java.util.ArrayList; -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/ActivityReferenceT.java
r13497 r18063 7 7 8 8 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx; 10 10 11 11 import javax.xml.bind.annotation.XmlAccessType; -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/ActivityT.java
r13497 r18063 7 7 8 8 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx; 10 10 11 11 import java.util.ArrayList; -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/ApplicationT.java
r13497 r18063 7 7 8 8 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx; 10 10 11 11 import javax.xml.bind.annotation.XmlAccessType; -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/BuildT.java
r13497 r18063 7 7 8 8 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx; 10 10 11 11 import javax.xml.bind.annotation.XmlAccessType; -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/BuildTypeT.java
r13497 r18063 7 7 8 8 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx; 10 10 11 11 import javax.xml.bind.annotation.XmlEnum; -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/CadenceT.java
r13497 r18063 7 7 8 8 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx; 10 10 11 11 import javax.xml.bind.annotation.XmlAccessType; -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/CaloriesBurnedT.java
r13497 r18063 7 7 8 8 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx; 10 10 11 11 import javax.xml.bind.annotation.XmlAccessType; -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/CourseFolderT.java
r13497 r18063 7 7 8 8 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx; 10 10 11 11 import java.util.ArrayList; -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/CourseLapT.java
r13497 r18063 7 7 8 8 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx; 10 10 11 11 import javax.xml.bind.annotation.XmlAccessType; -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/CourseListT.java
r13497 r18063 7 7 8 8 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx; 10 10 11 11 import java.util.ArrayList; -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/CoursePointT.java
r13497 r18063 7 7 8 8 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx; 10 10 11 11 import javax.xml.bind.annotation.XmlAccessType; -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/CourseT.java
r13497 r18063 7 7 8 8 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx; 10 10 11 11 import java.util.ArrayList; -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/CoursesT.java
r13497 r18063 7 7 8 8 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx; 10 10 11 11 import javax.xml.bind.annotation.XmlAccessType; -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/CustomHeartRateZoneT.java
r13497 r18063 7 7 8 8 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx; 10 10 11 11 import javax.xml.bind.annotation.XmlAccessType; -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/CustomSpeedZoneT.java
r13497 r18063 7 7 8 8 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx; 10 10 11 11 import javax.xml.bind.annotation.XmlAccessType; -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/DeviceT.java
r13497 r18063 7 7 8 8 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx; 10 10 11 11 import javax.xml.bind.annotation.XmlAccessType; -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/DistanceT.java
r13497 r18063 7 7 8 8 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx; 10 10 11 11 import javax.xml.bind.annotation.XmlAccessType; -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/DurationT.java
r13497 r18063 7 7 8 8 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx; 10 10 11 11 import javax.xml.bind.annotation.XmlAccessType; -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/ExtensionsT.java
r13497 r18063 7 7 8 8 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx; 10 10 11 11 import java.util.ArrayList; -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/FirstSportT.java
r13497 r18063 7 7 8 8 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx; 10 10 11 11 import javax.xml.bind.annotation.XmlAccessType; -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/FoldersT.java
r13497 r18063 7 7 8 8 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx; 10 10 11 11 import javax.xml.bind.annotation.XmlAccessType; -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/GenderT.java
r13497 r18063 7 7 8 8 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx; 10 10 11 11 import javax.xml.bind.annotation.XmlEnum; -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/HeartRateAboveT.java
r13497 r18063 7 7 8 8 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx; 10 10 11 11 import javax.xml.bind.annotation.XmlAccessType; -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/HeartRateAsPercentOfMaxT.java
r13497 r18063 7 7 8 8 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx; 10 10 11 11 import javax.xml.bind.annotation.XmlAccessType; -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/HeartRateBelowT.java
r13497 r18063 7 7 8 8 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx; 10 10 11 11 import javax.xml.bind.annotation.XmlAccessType; -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/HeartRateInBeatsPerMinuteT.java
r13497 r18063 7 7 8 8 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx; 10 10 11 11 import javax.xml.bind.annotation.XmlAccessType; -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/HeartRateT.java
r13497 r18063 7 7 8 8 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx; 10 10 11 11 import javax.xml.bind.annotation.XmlAccessType; -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/HeartRateValueT.java
r13497 r18063 7 7 8 8 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx; 10 10 11 11 import javax.xml.bind.annotation.XmlAccessType; -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/HistoryFolderT.java
r13497 r18063 7 7 8 8 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx; 10 10 11 11 import java.util.ArrayList; -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/HistoryT.java
r13497 r18063 7 7 8 8 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx; 10 10 11 11 import javax.xml.bind.annotation.XmlAccessType; -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/IntensityT.java
r13497 r18063 7 7 8 8 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx; 10 10 11 11 import javax.xml.bind.annotation.XmlEnum; -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/MultiSportFolderT.java
r13497 r18063 7 7 8 8 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx; 10 10 11 11 import java.util.ArrayList; -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/MultiSportSessionT.java
r13497 r18063 7 7 8 8 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx; 10 10 11 11 import java.util.ArrayList; -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/NameKeyReferenceT.java
r13497 r18063 7 7 8 8 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx; 10 10 11 11 import javax.xml.bind.annotation.XmlAccessType; -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/NextSportT.java
r13497 r18063 7 7 8 8 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx; 10 10 11 11 import javax.xml.bind.annotation.XmlAccessType; -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/NoneT.java
r13497 r18063 7 7 8 8 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx; 10 10 11 11 import javax.xml.bind.annotation.XmlAccessType; -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/ObjectFactory.java
r13497 r18063 7 7 8 8 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx; 10 10 11 11 import javax.xml.bind.JAXBElement; … … 18 18 * This object contains factory methods for each 19 19 * Java content interface and Java element interface 20 * generated in the org.openstreetmap.josm. io.tcx package.20 * generated in the org.openstreetmap.josm.plugins.dataimport.io.tcx package. 21 21 * <p>An ObjectFactory allows you to programatically 22 22 * construct new instances of the Java representation … … 35 35 36 36 /** 37 * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.openstreetmap.josm. io.tcx37 * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.openstreetmap.josm.plugins.dataimport.io.tcx 38 38 * 39 39 */ -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/PlanT.java
r13497 r18063 7 7 8 8 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx; 10 10 11 11 import javax.xml.bind.annotation.XmlAccessType; -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/PositionT.java
r13497 r18063 7 7 8 8 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx; 10 10 11 11 import javax.xml.bind.annotation.XmlAccessType; -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/PredefinedHeartRateZoneT.java
r13497 r18063 7 7 8 8 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx; 10 10 11 11 import javax.xml.bind.annotation.XmlAccessType; -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/PredefinedSpeedZoneT.java
r13497 r18063 7 7 8 8 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx; 10 10 11 11 import javax.xml.bind.annotation.XmlAccessType; -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/QuickWorkoutT.java
r13497 r18063 7 7 8 8 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx; 10 10 11 11 import javax.xml.bind.annotation.XmlAccessType; -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/RepeatT.java
r13497 r18063 7 7 8 8 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx; 10 10 11 11 import java.util.ArrayList; -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/SensorStateT.java
r13497 r18063 7 7 8 8 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx; 10 10 11 11 import javax.xml.bind.annotation.XmlEnum; -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/SpeedT.java
r13497 r18063 7 7 8 8 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx; 10 10 11 11 import javax.xml.bind.annotation.XmlAccessType; -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/SpeedTypeT.java
r13497 r18063 7 7 8 8 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx; 10 10 11 11 import javax.xml.bind.annotation.XmlEnum; -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/SportT.java
r13497 r18063 7 7 8 8 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx; 10 10 11 11 import javax.xml.bind.annotation.XmlEnum; -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/StepT.java
r13497 r18063 7 7 8 8 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx; 10 10 11 11 import javax.xml.bind.annotation.XmlAccessType; -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/TargetT.java
r13497 r18063 7 7 8 8 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx; 10 10 11 11 import javax.xml.bind.annotation.XmlAccessType; -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/TimeT.java
r13497 r18063 7 7 8 8 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx; 10 10 11 11 import javax.xml.bind.annotation.XmlAccessType; -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/TrackT.java
r13497 r18063 7 7 8 8 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx; 10 10 11 11 import java.util.ArrayList; -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/TrackpointT.java
r13497 r18063 7 7 8 8 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx; 10 10 11 11 import javax.xml.bind.annotation.XmlAccessType; -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/TrainingCenterDatabaseT.java
r13497 r18063 7 7 8 8 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx; 10 10 11 11 import javax.xml.bind.annotation.XmlAccessType; -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/TrainingT.java
r13497 r18063 7 7 8 8 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx; 10 10 11 11 import javax.xml.bind.annotation.XmlAccessType; -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/TrainingTypeT.java
r13497 r18063 7 7 8 8 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx; 10 10 11 11 import javax.xml.bind.annotation.XmlEnum; -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/TriggerMethodT.java
r13497 r18063 7 7 8 8 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx; 10 10 11 11 import javax.xml.bind.annotation.XmlEnum; -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/UserInitiatedT.java
r13497 r18063 7 7 8 8 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx; 10 10 11 11 import javax.xml.bind.annotation.XmlAccessType; -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/VersionT.java
r13497 r18063 7 7 8 8 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx; 10 10 11 11 import javax.xml.bind.annotation.XmlAccessType; -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/WeekT.java
r13497 r18063 7 7 8 8 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx; 10 10 11 11 import javax.xml.bind.annotation.XmlAccessType; -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/WorkoutFolderT.java
r13497 r18063 7 7 8 8 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx; 10 10 11 11 import java.util.ArrayList; -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/WorkoutListT.java
r13497 r18063 7 7 8 8 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx; 10 10 11 11 import java.util.ArrayList; -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/WorkoutT.java
r13497 r18063 7 7 8 8 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx; 10 10 11 11 import java.util.ArrayList; -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/WorkoutsT.java
r13497 r18063 7 7 8 8 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx; 10 10 11 11 import javax.xml.bind.annotation.XmlAccessType; -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/ZoneT.java
r13497 r18063 7 7 8 8 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx; 10 10 11 11 import javax.xml.bind.annotation.XmlAccessType; -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/tcx/package-info.java
r13497 r18063 7 7 8 8 @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.garmin.com/xmlschemas/TrainingCenterDatabase/v2", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) 9 package org.openstreetmap.josm. io.tcx;9 package org.openstreetmap.josm.plugins.dataimport.io.tcx;
Note:
See TracChangeset
for help on using the changeset viewer.