Changeset 33765 in osm for applications/editors/josm/plugins/public_transport
- Timestamp:
- 2017-11-04T18:19:11+01:00 (7 years ago)
- Location:
- applications/editors/josm/plugins/public_transport
- Files:
-
- 10 added
- 1 deleted
- 1 edited
- 34 copied
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/public_transport/build.xml
r33764 r33765 8 8 9 9 <property name="plugin.author" value="Roland M. Olbricht"/> 10 <property name="plugin.class" value=" public_transport.PublicTransportPlugin"/>10 <property name="plugin.class" value="org.openstreetmap.josm.plugins.public_transport.PublicTransportPlugin"/> 11 11 <property name="plugin.description" value="This plugin simplifies the mapping and editing of public transport routes."/> 12 12 <!-- <property name="plugin.icon" value=""/> --> -
applications/editors/josm/plugins/public_transport/src/org/openstreetmap/josm/plugins/public_transport/AStarAlgorithm.java
r33764 r33765 1 1 // License: GPL. For details, see LICENSE file. 2 package public_transport;2 package org.openstreetmap.josm.plugins.public_transport; 3 3 4 4 import java.util.Iterator; -
applications/editors/josm/plugins/public_transport/src/org/openstreetmap/josm/plugins/public_transport/PublicTransportAStar.java
r33764 r33765 1 1 // License: GPL. For details, see LICENSE file. 2 package public_transport;2 package org.openstreetmap.josm.plugins.public_transport; 3 3 4 4 import java.util.Iterator; -
applications/editors/josm/plugins/public_transport/src/org/openstreetmap/josm/plugins/public_transport/PublicTransportPlugin.java
r33764 r33765 1 1 // License: GPL. For details, see LICENSE file. 2 package public_transport;2 package org.openstreetmap.josm.plugins.public_transport; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; … … 13 13 import org.openstreetmap.josm.plugins.Plugin; 14 14 import org.openstreetmap.josm.plugins.PluginInformation; 15 import org.openstreetmap.josm.plugins.public_transport.actions.GTFSImporterAction; 16 import org.openstreetmap.josm.plugins.public_transport.actions.RoutePatternAction; 17 import org.openstreetmap.josm.plugins.public_transport.actions.StopImporterAction; 15 18 16 19 public class PublicTransportPlugin extends Plugin { -
applications/editors/josm/plugins/public_transport/src/org/openstreetmap/josm/plugins/public_transport/TransText.java
r33764 r33765 1 1 // License: GPL. For details, see LICENSE file. 2 package public_transport;2 package org.openstreetmap.josm.plugins.public_transport; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; -
applications/editors/josm/plugins/public_transport/src/org/openstreetmap/josm/plugins/public_transport/actions/GTFSImporterAction.java
r33764 r33765 1 1 // License: GPL. For details, see LICENSE file. 2 package public_transport;2 package org.openstreetmap.josm.plugins.public_transport.actions; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; … … 31 31 import org.openstreetmap.josm.data.osm.visitor.BoundingXYVisitor; 32 32 import org.openstreetmap.josm.gui.MainApplication; 33 import org.openstreetmap.josm.plugins.public_transport.commands.GTFSAddCommand; 34 import org.openstreetmap.josm.plugins.public_transport.commands.GTFSCatchCommand; 35 import org.openstreetmap.josm.plugins.public_transport.commands.GTFSDeleteCommand; 36 import org.openstreetmap.josm.plugins.public_transport.commands.GTFSJoinCommand; 37 import org.openstreetmap.josm.plugins.public_transport.dialogs.GTFSImporterDialog; 38 import org.openstreetmap.josm.plugins.public_transport.models.GTFSStopTableModel; 39 import org.openstreetmap.josm.plugins.public_transport.refs.TrackReference; 33 40 import org.openstreetmap.josm.tools.Logging; 34 41 -
applications/editors/josm/plugins/public_transport/src/org/openstreetmap/josm/plugins/public_transport/actions/RoutePatternAction.java
r33764 r33765 1 1 // License: GPL. For details, see LICENSE file. 2 package public_transport;2 package org.openstreetmap.josm.plugins.public_transport.actions; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; … … 54 54 import org.openstreetmap.josm.data.osm.visitor.BoundingXYVisitor; 55 55 import org.openstreetmap.josm.gui.MainApplication; 56 import org.openstreetmap.josm.plugins.public_transport.models.ItineraryTableModel; 57 import org.openstreetmap.josm.plugins.public_transport.refs.RouteReference; 58 import org.openstreetmap.josm.plugins.public_transport.refs.StopReference; 56 59 57 60 public class RoutePatternAction extends JosmAction { -
applications/editors/josm/plugins/public_transport/src/org/openstreetmap/josm/plugins/public_transport/actions/StopImporterAction.java
r33764 r33765 1 1 // License: GPL. For details, see LICENSE file. 2 package public_transport;2 package org.openstreetmap.josm.plugins.public_transport.actions; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; … … 36 36 import org.openstreetmap.josm.gui.MainApplication; 37 37 import org.openstreetmap.josm.io.GpxReader; 38 import org.openstreetmap.josm.plugins.public_transport.commands.SettingsStoptypeCommand; 39 import org.openstreetmap.josm.plugins.public_transport.commands.TrackStoplistAddCommand; 40 import org.openstreetmap.josm.plugins.public_transport.commands.TrackStoplistDeleteCommand; 41 import org.openstreetmap.josm.plugins.public_transport.commands.TrackStoplistDetachCommand; 42 import org.openstreetmap.josm.plugins.public_transport.commands.TrackStoplistRelocateCommand; 43 import org.openstreetmap.josm.plugins.public_transport.commands.TrackStoplistSortCommand; 44 import org.openstreetmap.josm.plugins.public_transport.commands.TrackSuggestStopsCommand; 45 import org.openstreetmap.josm.plugins.public_transport.commands.WaypointsDetachCommand; 46 import org.openstreetmap.josm.plugins.public_transport.commands.WaypointsDisableCommand; 47 import org.openstreetmap.josm.plugins.public_transport.commands.WaypointsEnableCommand; 48 import org.openstreetmap.josm.plugins.public_transport.dialogs.StopImporterDialog; 49 import org.openstreetmap.josm.plugins.public_transport.models.WaypointTableModel; 50 import org.openstreetmap.josm.plugins.public_transport.refs.TrackReference; 38 51 import org.xml.sax.SAXException; 39 52 -
applications/editors/josm/plugins/public_transport/src/org/openstreetmap/josm/plugins/public_transport/commands/AbstractGTFSCatchJoinCommand.java
r33764 r33765 1 1 // License: GPL. For details, see LICENSE file. 2 package public_transport;2 package org.openstreetmap.josm.plugins.public_transport.commands; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; … … 14 14 import org.openstreetmap.josm.data.osm.OsmPrimitive; 15 15 import org.openstreetmap.josm.gui.MainApplication; 16 import org.openstreetmap.josm.plugins.public_transport.actions.GTFSImporterAction; 17 import org.openstreetmap.josm.plugins.public_transport.models.GTFSStopTableModel; 16 18 17 19 public abstract class AbstractGTFSCatchJoinCommand extends Command { -
applications/editors/josm/plugins/public_transport/src/org/openstreetmap/josm/plugins/public_transport/commands/GTFSAddCommand.java
r33764 r33765 1 1 // License: GPL. For details, see LICENSE file. 2 package public_transport;2 package org.openstreetmap.josm.plugins.public_transport.commands; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; … … 11 11 import org.openstreetmap.josm.data.osm.OsmPrimitive; 12 12 import org.openstreetmap.josm.gui.MainApplication; 13 import org.openstreetmap.josm.plugins.public_transport.actions.GTFSImporterAction; 14 import org.openstreetmap.josm.plugins.public_transport.models.GTFSStopTableModel; 13 15 14 16 public class GTFSAddCommand extends Command { -
applications/editors/josm/plugins/public_transport/src/org/openstreetmap/josm/plugins/public_transport/commands/GTFSCatchCommand.java
r33764 r33765 1 1 // License: GPL. For details, see LICENSE file. 2 package public_transport;2 package org.openstreetmap.josm.plugins.public_transport.commands; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; 5 6 import org.openstreetmap.josm.plugins.public_transport.actions.GTFSImporterAction; 5 7 6 8 public class GTFSCatchCommand extends AbstractGTFSCatchJoinCommand { -
applications/editors/josm/plugins/public_transport/src/org/openstreetmap/josm/plugins/public_transport/commands/GTFSDeleteCommand.java
r33764 r33765 1 1 // License: GPL. For details, see LICENSE file. 2 package public_transport;2 package org.openstreetmap.josm.plugins.public_transport.commands; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; … … 11 11 import org.openstreetmap.josm.data.osm.OsmPrimitive; 12 12 import org.openstreetmap.josm.gui.MainApplication; 13 import org.openstreetmap.josm.plugins.public_transport.actions.GTFSImporterAction; 14 import org.openstreetmap.josm.plugins.public_transport.models.GTFSStopTableModel; 13 15 14 16 public class GTFSDeleteCommand extends Command { -
applications/editors/josm/plugins/public_transport/src/org/openstreetmap/josm/plugins/public_transport/commands/GTFSJoinCommand.java
r33764 r33765 1 1 // License: GPL. For details, see LICENSE file. 2 package public_transport;2 package org.openstreetmap.josm.plugins.public_transport.commands; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; 5 6 import org.openstreetmap.josm.plugins.public_transport.actions.GTFSImporterAction; 5 7 6 8 public class GTFSJoinCommand extends AbstractGTFSCatchJoinCommand { -
applications/editors/josm/plugins/public_transport/src/org/openstreetmap/josm/plugins/public_transport/commands/SettingsStoptypeCommand.java
r33764 r33765 1 1 // License: GPL. For details, see LICENSE file. 2 package public_transport;2 package org.openstreetmap.josm.plugins.public_transport.commands; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; … … 12 12 import org.openstreetmap.josm.data.osm.Node; 13 13 import org.openstreetmap.josm.data.osm.OsmPrimitive; 14 import org.openstreetmap.josm.plugins.public_transport.actions.StopImporterAction; 15 import org.openstreetmap.josm.plugins.public_transport.models.WaypointTableModel; 16 import org.openstreetmap.josm.plugins.public_transport.refs.TrackReference; 14 17 15 18 public class SettingsStoptypeCommand extends Command { -
applications/editors/josm/plugins/public_transport/src/org/openstreetmap/josm/plugins/public_transport/commands/TrackStoplistAddCommand.java
r33764 r33765 1 1 // License: GPL. For details, see LICENSE file. 2 package public_transport;2 package org.openstreetmap.josm.plugins.public_transport.commands; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; … … 8 8 import org.openstreetmap.josm.command.Command; 9 9 import org.openstreetmap.josm.data.osm.OsmPrimitive; 10 import org.openstreetmap.josm.plugins.public_transport.actions.StopImporterAction; 11 import org.openstreetmap.josm.plugins.public_transport.models.TrackStoplistTableModel; 10 12 11 13 public class TrackStoplistAddCommand extends Command { -
applications/editors/josm/plugins/public_transport/src/org/openstreetmap/josm/plugins/public_transport/commands/TrackStoplistDeleteCommand.java
r33764 r33765 1 1 // License: GPL. For details, see LICENSE file. 2 package public_transport;2 package org.openstreetmap.josm.plugins.public_transport.commands; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; … … 11 11 import org.openstreetmap.josm.data.osm.OsmPrimitive; 12 12 import org.openstreetmap.josm.gui.MainApplication; 13 import org.openstreetmap.josm.plugins.public_transport.TransText; 14 import org.openstreetmap.josm.plugins.public_transport.actions.StopImporterAction; 15 import org.openstreetmap.josm.plugins.public_transport.models.TrackStoplistTableModel; 13 16 14 17 public class TrackStoplistDeleteCommand extends Command { -
applications/editors/josm/plugins/public_transport/src/org/openstreetmap/josm/plugins/public_transport/commands/TrackStoplistDetachCommand.java
r33764 r33765 1 1 // License: GPL. For details, see LICENSE file. 2 package public_transport;2 package org.openstreetmap.josm.plugins.public_transport.commands; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; … … 10 10 import org.openstreetmap.josm.data.osm.Node; 11 11 import org.openstreetmap.josm.data.osm.OsmPrimitive; 12 import org.openstreetmap.josm.plugins.public_transport.actions.StopImporterAction; 13 import org.openstreetmap.josm.plugins.public_transport.models.TrackStoplistTableModel; 12 14 13 15 public class TrackStoplistDetachCommand extends Command { -
applications/editors/josm/plugins/public_transport/src/org/openstreetmap/josm/plugins/public_transport/commands/TrackStoplistNameCommand.java
r33764 r33765 1 1 // License: GPL. For details, see LICENSE file. 2 package public_transport;2 package org.openstreetmap.josm.plugins.public_transport.commands; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; … … 10 10 import org.openstreetmap.josm.data.osm.Node; 11 11 import org.openstreetmap.josm.data.osm.OsmPrimitive; 12 import org.openstreetmap.josm.plugins.public_transport.TransText; 13 import org.openstreetmap.josm.plugins.public_transport.dialogs.StopImporterDialog; 14 import org.openstreetmap.josm.plugins.public_transport.refs.TrackReference; 12 15 13 16 public class TrackStoplistNameCommand extends Command { -
applications/editors/josm/plugins/public_transport/src/org/openstreetmap/josm/plugins/public_transport/commands/TrackStoplistRelocateCommand.java
r33764 r33765 1 1 // License: GPL. For details, see LICENSE file. 2 package public_transport;2 package org.openstreetmap.josm.plugins.public_transport.commands; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; … … 9 9 import org.openstreetmap.josm.data.osm.Node; 10 10 import org.openstreetmap.josm.data.osm.OsmPrimitive; 11 import org.openstreetmap.josm.plugins.public_transport.actions.StopImporterAction; 12 import org.openstreetmap.josm.plugins.public_transport.dialogs.StopImporterDialog; 13 import org.openstreetmap.josm.plugins.public_transport.refs.TrackReference; 11 14 12 15 public class TrackStoplistRelocateCommand extends Command { -
applications/editors/josm/plugins/public_transport/src/org/openstreetmap/josm/plugins/public_transport/commands/TrackStoplistSortCommand.java
r33764 r33765 1 1 // License: GPL. For details, see LICENSE file. 2 package public_transport;2 package org.openstreetmap.josm.plugins.public_transport.commands; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; … … 12 12 import org.openstreetmap.josm.data.osm.Node; 13 13 import org.openstreetmap.josm.data.osm.OsmPrimitive; 14 import org.openstreetmap.josm.plugins.public_transport.TransText; 15 import org.openstreetmap.josm.plugins.public_transport.actions.StopImporterAction; 16 import org.openstreetmap.josm.plugins.public_transport.dialogs.StopImporterDialog; 17 import org.openstreetmap.josm.plugins.public_transport.models.TrackStoplistTableModel; 14 18 15 19 public class TrackStoplistSortCommand extends Command { -
applications/editors/josm/plugins/public_transport/src/org/openstreetmap/josm/plugins/public_transport/commands/TrackSuggestStopsCommand.java
r33764 r33765 1 1 // License: GPL. For details, see LICENSE file. 2 package public_transport;2 package org.openstreetmap.josm.plugins.public_transport.commands; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; … … 15 15 import org.openstreetmap.josm.data.osm.OsmPrimitive; 16 16 import org.openstreetmap.josm.gui.MainApplication; 17 import org.openstreetmap.josm.plugins.public_transport.TransText; 18 import org.openstreetmap.josm.plugins.public_transport.actions.StopImporterAction; 19 import org.openstreetmap.josm.plugins.public_transport.dialogs.StopImporterDialog; 20 import org.openstreetmap.josm.plugins.public_transport.models.TrackStoplistTableModel; 17 21 18 22 public class TrackSuggestStopsCommand extends Command { -
applications/editors/josm/plugins/public_transport/src/org/openstreetmap/josm/plugins/public_transport/commands/WaypointsDetachCommand.java
r33764 r33765 1 1 // License: GPL. For details, see LICENSE file. 2 package public_transport;2 package org.openstreetmap.josm.plugins.public_transport.commands; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; … … 10 10 import org.openstreetmap.josm.data.osm.Node; 11 11 import org.openstreetmap.josm.data.osm.OsmPrimitive; 12 import org.openstreetmap.josm.plugins.public_transport.actions.StopImporterAction; 13 import org.openstreetmap.josm.plugins.public_transport.models.WaypointTableModel; 12 14 13 15 public class WaypointsDetachCommand extends Command { -
applications/editors/josm/plugins/public_transport/src/org/openstreetmap/josm/plugins/public_transport/commands/WaypointsDisableCommand.java
r33764 r33765 1 1 // License: GPL. For details, see LICENSE file. 2 package public_transport;2 package org.openstreetmap.josm.plugins.public_transport.commands; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; … … 11 11 import org.openstreetmap.josm.data.osm.OsmPrimitive; 12 12 import org.openstreetmap.josm.gui.MainApplication; 13 import org.openstreetmap.josm.plugins.public_transport.actions.StopImporterAction; 14 import org.openstreetmap.josm.plugins.public_transport.models.WaypointTableModel; 13 15 14 16 public class WaypointsDisableCommand extends Command { -
applications/editors/josm/plugins/public_transport/src/org/openstreetmap/josm/plugins/public_transport/commands/WaypointsEnableCommand.java
r33764 r33765 1 1 // License: GPL. For details, see LICENSE file. 2 package public_transport;2 package org.openstreetmap.josm.plugins.public_transport.commands; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; … … 11 11 import org.openstreetmap.josm.data.osm.OsmPrimitive; 12 12 import org.openstreetmap.josm.gui.MainApplication; 13 import org.openstreetmap.josm.plugins.public_transport.TransText; 14 import org.openstreetmap.josm.plugins.public_transport.actions.StopImporterAction; 15 import org.openstreetmap.josm.plugins.public_transport.models.WaypointTableModel; 13 16 14 17 public class WaypointsEnableCommand extends Command { -
applications/editors/josm/plugins/public_transport/src/org/openstreetmap/josm/plugins/public_transport/commands/WaypointsNameCommand.java
r33764 r33765 1 1 // License: GPL. For details, see LICENSE file. 2 package public_transport;2 package org.openstreetmap.josm.plugins.public_transport.commands; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; … … 8 8 import org.openstreetmap.josm.command.Command; 9 9 import org.openstreetmap.josm.data.osm.OsmPrimitive; 10 import org.openstreetmap.josm.plugins.public_transport.TransText; 11 import org.openstreetmap.josm.plugins.public_transport.models.WaypointTableModel; 10 12 11 13 public class WaypointsNameCommand extends Command { -
applications/editors/josm/plugins/public_transport/src/org/openstreetmap/josm/plugins/public_transport/dialogs/AbstractImporterDialog.java
r33764 r33765 1 1 // License: GPL. For details, see LICENSE file. 2 package public_transport;2 package org.openstreetmap.josm.plugins.public_transport.dialogs; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.marktr; … … 15 15 import org.openstreetmap.josm.Main; 16 16 import org.openstreetmap.josm.actions.JosmAction; 17 import org.openstreetmap.josm.plugins.public_transport.TransText; 17 18 18 19 /** -
applications/editors/josm/plugins/public_transport/src/org/openstreetmap/josm/plugins/public_transport/dialogs/GTFSImporterDialog.java
r33764 r33765 1 1 // License: GPL. For details, see LICENSE file. 2 package public_transport;2 package org.openstreetmap.josm.plugins.public_transport.dialogs; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; … … 14 14 import javax.swing.JTable; 15 15 import javax.swing.KeyStroke; 16 17 import org.openstreetmap.josm.plugins.public_transport.actions.GTFSImporterAction; 18 import org.openstreetmap.josm.plugins.public_transport.models.GTFSStopTableModel; 16 19 17 20 public class GTFSImporterDialog extends AbstractImporterDialog<GTFSImporterAction> { -
applications/editors/josm/plugins/public_transport/src/org/openstreetmap/josm/plugins/public_transport/dialogs/StopImporterDialog.java
r33764 r33765 1 1 // License: GPL. For details, see LICENSE file. 2 package public_transport;2 package org.openstreetmap.josm.plugins.public_transport.dialogs; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.marktr; … … 23 23 import javax.swing.event.ListSelectionListener; 24 24 25 import org.openstreetmap.josm.plugins.public_transport.TransText; 26 import org.openstreetmap.josm.plugins.public_transport.actions.StopImporterAction; 27 import org.openstreetmap.josm.plugins.public_transport.models.TrackStoplistTableModel; 28 import org.openstreetmap.josm.plugins.public_transport.models.WaypointTableModel; 29 import org.openstreetmap.josm.plugins.public_transport.refs.TrackReference; 30 25 31 public class StopImporterDialog extends AbstractImporterDialog<StopImporterAction> { 26 32 private JList<TrackReference> tracksList = null; -
applications/editors/josm/plugins/public_transport/src/org/openstreetmap/josm/plugins/public_transport/models/GTFSStopTableModel.java
r33764 r33765 1 1 // License: GPL. For details, see LICENSE file. 2 package public_transport;2 package org.openstreetmap.josm.plugins.public_transport.models; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; … … 16 16 import org.openstreetmap.josm.data.osm.Node; 17 17 import org.openstreetmap.josm.gui.MainApplication; 18 import org.openstreetmap.josm.plugins.public_transport.actions.GTFSImporterAction; 18 19 19 20 public class GTFSStopTableModel extends DefaultTableModel implements TableModelListener { -
applications/editors/josm/plugins/public_transport/src/org/openstreetmap/josm/plugins/public_transport/models/ItineraryTableModel.java
r33764 r33765 1 1 // License: GPL. For details, see LICENSE file. 2 package public_transport;2 package org.openstreetmap.josm.plugins.public_transport.models; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; … … 12 12 import org.openstreetmap.josm.data.osm.Node; 13 13 import org.openstreetmap.josm.data.osm.Way; 14 import org.openstreetmap.josm.plugins.public_transport.actions.RoutePatternAction; 14 15 15 16 public class ItineraryTableModel extends DefaultTableModel implements TableModelListener { -
applications/editors/josm/plugins/public_transport/src/org/openstreetmap/josm/plugins/public_transport/models/TrackStoplistTableModel.java
r33764 r33765 1 1 // License: GPL. For details, see LICENSE file. 2 package public_transport;2 package org.openstreetmap.josm.plugins.public_transport.models; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; … … 9 9 10 10 import org.openstreetmap.josm.data.osm.Node; 11 import org.openstreetmap.josm.plugins.public_transport.TransText; 12 import org.openstreetmap.josm.plugins.public_transport.refs.TrackReference; 11 13 12 14 public class TrackStoplistTableModel extends DefaultTableModel { -
applications/editors/josm/plugins/public_transport/src/org/openstreetmap/josm/plugins/public_transport/models/WaypointTableModel.java
r33764 r33765 1 1 // License: GPL. For details, see LICENSE file. 2 package public_transport;2 package org.openstreetmap.josm.plugins.public_transport.models; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; … … 14 14 import org.openstreetmap.josm.data.gpx.WayPoint; 15 15 import org.openstreetmap.josm.data.osm.Node; 16 import org.openstreetmap.josm.plugins.public_transport.TransText; 17 import org.openstreetmap.josm.plugins.public_transport.actions.StopImporterAction; 18 import org.openstreetmap.josm.plugins.public_transport.commands.WaypointsNameCommand; 16 19 17 20 public class WaypointTableModel extends DefaultTableModel implements TableModelListener { -
applications/editors/josm/plugins/public_transport/src/org/openstreetmap/josm/plugins/public_transport/refs/RouteReference.java
r33764 r33765 1 1 // License: GPL. For details, see LICENSE file. 2 package public_transport;2 package org.openstreetmap.josm.plugins.public_transport.refs; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; … … 7 7 8 8 public class RouteReference implements Comparable<RouteReference> { 9 Relation route;9 public final Relation route; 10 10 11 11 public RouteReference(Relation route) { -
applications/editors/josm/plugins/public_transport/src/org/openstreetmap/josm/plugins/public_transport/refs/StopReference.java
r33764 r33765 1 1 // License: GPL. For details, see LICENSE file. 2 package public_transport;2 package org.openstreetmap.josm.plugins.public_transport.refs; 3 3 4 4 import org.openstreetmap.josm.data.osm.Node; -
applications/editors/josm/plugins/public_transport/src/org/openstreetmap/josm/plugins/public_transport/refs/TrackReference.java
r33764 r33765 1 1 // License: GPL. For details, see LICENSE file. 2 package public_transport;2 package org.openstreetmap.josm.plugins.public_transport.refs; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; … … 18 18 import org.openstreetmap.josm.data.gpx.WayPoint; 19 19 import org.openstreetmap.josm.data.osm.Node; 20 import org.openstreetmap.josm.plugins.public_transport.actions.StopImporterAction; 21 import org.openstreetmap.josm.plugins.public_transport.commands.TrackStoplistNameCommand; 22 import org.openstreetmap.josm.plugins.public_transport.dialogs.StopImporterDialog; 23 import org.openstreetmap.josm.plugins.public_transport.models.TrackStoplistTableModel; 20 24 21 25 public class TrackReference implements Comparable<TrackReference>, TableModelListener {
Note:
See TracChangeset
for help on using the changeset viewer.