Changeset 34501 in osm for applications
- Timestamp:
- 2018-08-18T03:41:55+02:00 (6 years ago)
- Location:
- applications/editors/josm/plugins/CustomizePublicTransportStop
- Files:
-
- 4 added
- 1 deleted
- 9 edited
- 5 copied
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/CustomizePublicTransportStop/build.xml
r34500 r34501 28 28 <manifest> 29 29 <attribute name="Author" value="Rodion Scherbakov"/> 30 <attribute name="Plugin-Class" value=" ru.rodsoft.openstreetmap.josm.plugins.customizepublictransportstop.CustomizePublicTransportStopPlugin"/>30 <attribute name="Plugin-Class" value="org.openstreetmap.josm.plugins.customizepublictransportstop.CustomizePublicTransportStopPlugin"/> 31 31 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/> 32 32 <attribute name="Plugin-Description" value="Customization of public public transport stops."/> -
applications/editors/josm/plugins/CustomizePublicTransportStop/src/org/openstreetmap/josm/plugins/customizepublictransportstop/CreateNewStopPointOperation.java
r34500 r34501 1 1 // License: GPL. For details, see LICENSE file. 2 package ru.rodsoft.openstreetmap.josm.plugins.customizepublictransportstop;2 package org.openstreetmap.josm.plugins.customizepublictransportstop; 3 3 4 4 import java.awt.Point; -
applications/editors/josm/plugins/CustomizePublicTransportStop/src/org/openstreetmap/josm/plugins/customizepublictransportstop/CreateStopAreaFromSelectedObjectOperation.java
r34156 r34501 1 1 // License: GPL. For details, see LICENSE file. 2 package ru.rodsoft.openstreetmap.josm.plugins.customizepublictransportstop;2 package org.openstreetmap.josm.plugins.customizepublictransportstop; 3 3 4 4 import java.util.ArrayList; -
applications/editors/josm/plugins/CustomizePublicTransportStop/src/org/openstreetmap/josm/plugins/customizepublictransportstop/CustomizePublicTransportStopDialog.java
r34500 r34501 1 1 // License: GPL. For details, see LICENSE file. 2 package ru.rodsoft.openstreetmap.josm.plugins.customizepublictransportstop;2 package org.openstreetmap.josm.plugins.customizepublictransportstop; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; -
applications/editors/josm/plugins/CustomizePublicTransportStop/src/org/openstreetmap/josm/plugins/customizepublictransportstop/CustomizePublicTransportStopPlugin.java
r34156 r34501 1 1 // License: GPL. For details, see LICENSE file. 2 package ru.rodsoft.openstreetmap.josm.plugins.customizepublictransportstop;2 package org.openstreetmap.josm.plugins.customizepublictransportstop; 3 3 4 4 import org.openstreetmap.josm.gui.MainApplication; -
applications/editors/josm/plugins/CustomizePublicTransportStop/src/org/openstreetmap/josm/plugins/customizepublictransportstop/CustomizeStopAction.java
r34156 r34501 1 1 // License: GPL. For details, see LICENSE file. 2 package ru.rodsoft.openstreetmap.josm.plugins.customizepublictransportstop;2 package org.openstreetmap.josm.plugins.customizepublictransportstop; 3 3 4 4 import static org.openstreetmap.josm.gui.help.HelpUtil.ht; -
applications/editors/josm/plugins/CustomizePublicTransportStop/src/org/openstreetmap/josm/plugins/customizepublictransportstop/CustomizeStopAreaOperation.java
r34500 r34501 1 1 // License: GPL. For details, see LICENSE file. 2 package ru.rodsoft.openstreetmap.josm.plugins.customizepublictransportstop;2 package org.openstreetmap.josm.plugins.customizepublictransportstop; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; -
applications/editors/josm/plugins/CustomizePublicTransportStop/src/org/openstreetmap/josm/plugins/customizepublictransportstop/IStopAreaCustomizer.java
r34156 r34501 1 1 // License: GPL. For details, see LICENSE file. 2 package ru.rodsoft.openstreetmap.josm.plugins.customizepublictransportstop;2 package org.openstreetmap.josm.plugins.customizepublictransportstop; 3 3 4 4 /** -
applications/editors/josm/plugins/CustomizePublicTransportStop/src/org/openstreetmap/josm/plugins/customizepublictransportstop/MessageBox.java
r34500 r34501 1 1 // License: GPL. For details, see LICENSE file. 2 package ru.rodsoft.openstreetmap.josm.plugins.customizepublictransportstop;2 package org.openstreetmap.josm.plugins.customizepublictransportstop; 3 3 4 4 import java.awt.Component; -
applications/editors/josm/plugins/CustomizePublicTransportStop/src/org/openstreetmap/josm/plugins/customizepublictransportstop/NearestWaySegment.java
r34156 r34501 1 1 // License: GPL. For details, see LICENSE file. 2 package ru.rodsoft.openstreetmap.josm.plugins.customizepublictransportstop;2 package org.openstreetmap.josm.plugins.customizepublictransportstop; 3 3 4 4 import org.openstreetmap.josm.data.osm.Node; -
applications/editors/josm/plugins/CustomizePublicTransportStop/src/org/openstreetmap/josm/plugins/customizepublictransportstop/OSMTags.java
r34156 r34501 1 1 // License: GPL. For details, see LICENSE file. 2 package ru.rodsoft.openstreetmap.josm.plugins.customizepublictransportstop;2 package org.openstreetmap.josm.plugins.customizepublictransportstop; 3 3 4 4 /** -
applications/editors/josm/plugins/CustomizePublicTransportStop/src/org/openstreetmap/josm/plugins/customizepublictransportstop/StopArea.java
r34156 r34501 1 1 // License: GPL. For details, see LICENSE file. 2 package ru.rodsoft.openstreetmap.josm.plugins.customizepublictransportstop;2 package org.openstreetmap.josm.plugins.customizepublictransportstop; 3 3 4 4 import java.util.ArrayList; -
applications/editors/josm/plugins/CustomizePublicTransportStop/src/org/openstreetmap/josm/plugins/customizepublictransportstop/StopAreaOperationBase.java
r34156 r34501 1 1 // License: GPL. For details, see LICENSE file. 2 package ru.rodsoft.openstreetmap.josm.plugins.customizepublictransportstop;2 package org.openstreetmap.josm.plugins.customizepublictransportstop; 3 3 4 4 import java.util.ArrayList;
Note:
See TracChangeset
for help on using the changeset viewer.