Changeset 34574 in osm
- Timestamp:
- 2018-08-18T21:09:08+02:00 (6 years ago)
- Location:
- applications/editors/josm/plugins/CommandLine
- Files:
-
- 4 added
- 21 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/CommandLine/build.xml
r34498 r34574 10 10 --> 11 11 <property name="plugin.author" value="Hind"/> 12 <property name="plugin.class" value=" CommandLine.CommandLine"/>12 <property name="plugin.class" value="org.openstreetmap.josm.plugins.commandline.CommandLine"/> 13 13 <property name="plugin.description" value="Implements a command line and enables to create your commands. See link for standard commands (arc, circle etc.)"/> 14 14 <property name="plugin.icon" value="images/commandline.png"/> -
applications/editors/josm/plugins/CommandLine/src/org/openstreetmap/josm/plugins/commandline/AbstractOsmAction.java
r33984 r34574 1 1 // License: GPL. For details, see LICENSE file. 2 package CommandLine;2 package org.openstreetmap.josm.plugins.commandline; 3 3 4 4 import java.awt.AWTEvent; -
applications/editors/josm/plugins/CommandLine/src/org/openstreetmap/josm/plugins/commandline/AnyAction.java
r33733 r34574 1 1 // License: GPL. For details, see LICENSE file. 2 package CommandLine;2 package org.openstreetmap.josm.plugins.commandline; 3 3 4 4 import java.awt.Point; -
applications/editors/josm/plugins/CommandLine/src/org/openstreetmap/josm/plugins/commandline/Command.java
r33174 r34574 1 1 // License: GPL. For details, see LICENSE file. 2 package CommandLine;2 package org.openstreetmap.josm.plugins.commandline; 3 3 4 4 import java.util.ArrayList; -
applications/editors/josm/plugins/CommandLine/src/org/openstreetmap/josm/plugins/commandline/CommandAction.java
r32779 r34574 1 1 // License: GPL. For details, see LICENSE file. 2 package CommandLine;2 package org.openstreetmap.josm.plugins.commandline; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; -
applications/editors/josm/plugins/CommandLine/src/org/openstreetmap/josm/plugins/commandline/CommandLine.java
r34498 r34574 1 1 // License: GPL. For details, see LICENSE file. 2 package CommandLine;2 package org.openstreetmap.josm.plugins.commandline; 3 3 4 4 import static org.openstreetmap.josm.gui.help.HelpUtil.ht; -
applications/editors/josm/plugins/CommandLine/src/org/openstreetmap/josm/plugins/commandline/CommandLineAction.java
r32779 r34574 1 1 // License: GPL. For details, see LICENSE file. 2 package CommandLine;2 package org.openstreetmap.josm.plugins.commandline; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; -
applications/editors/josm/plugins/CommandLine/src/org/openstreetmap/josm/plugins/commandline/DummyAction.java
r33733 r34574 1 1 // License: GPL. For details, see LICENSE file. 2 package CommandLine;2 package org.openstreetmap.josm.plugins.commandline; 3 3 4 4 import java.awt.AWTEvent; -
applications/editors/josm/plugins/CommandLine/src/org/openstreetmap/josm/plugins/commandline/GpxFilter.java
r32779 r34574 1 1 // License: GPL. For details, see LICENSE file. 2 package CommandLine;2 package org.openstreetmap.josm.plugins.commandline; 3 3 4 4 import java.util.ArrayList; -
applications/editors/josm/plugins/CommandLine/src/org/openstreetmap/josm/plugins/commandline/History.java
r32779 r34574 1 1 // License: GPL. For details, see LICENSE file. 2 package CommandLine;2 package org.openstreetmap.josm.plugins.commandline; 3 3 4 4 import java.util.LinkedList; -
applications/editors/josm/plugins/CommandLine/src/org/openstreetmap/josm/plugins/commandline/LengthAction.java
r33733 r34574 1 1 // License: GPL. For details, see LICENSE file. 2 package CommandLine;2 package org.openstreetmap.josm.plugins.commandline; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.marktr; -
applications/editors/josm/plugins/CommandLine/src/org/openstreetmap/josm/plugins/commandline/Loader.java
r33733 r34574 1 1 // License: GPL. For details, see LICENSE file. 2 package CommandLine;2 package org.openstreetmap.josm.plugins.commandline; 3 3 4 4 import java.io.File; -
applications/editors/josm/plugins/CommandLine/src/org/openstreetmap/josm/plugins/commandline/Mode.java
r32779 r34574 1 1 // License: GPL. For details, see LICENSE file. 2 package CommandLine;2 package org.openstreetmap.josm.plugins.commandline; 3 3 4 4 public enum Mode { IDLE, SELECTION, ADJUSTMENT, PROCESSING } -
applications/editors/josm/plugins/CommandLine/src/org/openstreetmap/josm/plugins/commandline/NodeAction.java
r33733 r34574 1 1 // License: GPL. For details, see LICENSE file. 2 package CommandLine;2 package org.openstreetmap.josm.plugins.commandline; 3 3 4 4 import java.awt.Point; -
applications/editors/josm/plugins/CommandLine/src/org/openstreetmap/josm/plugins/commandline/OsmToCmd.java
r33733 r34574 1 1 // License: GPL. For details, see LICENSE file. 2 package CommandLine;2 package org.openstreetmap.josm.plugins.commandline; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; -
applications/editors/josm/plugins/CommandLine/src/org/openstreetmap/josm/plugins/commandline/Parameter.java
r33174 r34574 1 1 // License: GPL. For details, see LICENSE file. 2 package CommandLine;2 package org.openstreetmap.josm.plugins.commandline; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; -
applications/editors/josm/plugins/CommandLine/src/org/openstreetmap/josm/plugins/commandline/PointAction.java
r34498 r34574 1 1 // License: GPL. For details, see LICENSE file. 2 package CommandLine;2 package org.openstreetmap.josm.plugins.commandline; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; -
applications/editors/josm/plugins/CommandLine/src/org/openstreetmap/josm/plugins/commandline/RelationAction.java
r33733 r34574 1 1 // License: GPL. For details, see LICENSE file. 2 package CommandLine;2 package org.openstreetmap.josm.plugins.commandline; 3 3 4 4 import java.awt.AWTEvent; -
applications/editors/josm/plugins/CommandLine/src/org/openstreetmap/josm/plugins/commandline/Relay.java
r32779 r34574 1 1 // License: GPL. For details, see LICENSE file. 2 package CommandLine;2 package org.openstreetmap.josm.plugins.commandline; 3 3 4 4 import java.util.HashMap; -
applications/editors/josm/plugins/CommandLine/src/org/openstreetmap/josm/plugins/commandline/Type.java
r32779 r34574 1 1 // License: GPL. For details, see LICENSE file. 2 package CommandLine;2 package org.openstreetmap.josm.plugins.commandline; 3 3 4 4 public enum Type { NODE, WAY, RELATION, ANY, POINT, LENGTH, NATURAL, STRING, TRIGGER, RELAY, USERNAME, IMAGERYURL, IMAGERYOFFSET } -
applications/editors/josm/plugins/CommandLine/src/org/openstreetmap/josm/plugins/commandline/WayAction.java
r33733 r34574 1 1 // License: GPL. For details, see LICENSE file. 2 package CommandLine;2 package org.openstreetmap.josm.plugins.commandline; 3 3 4 4 import java.awt.Point;
Note:
See TracChangeset
for help on using the changeset viewer.