Changeset 31655 in osm
- Timestamp:
- 2015-10-20T16:57:35+02:00 (9 years ago)
- Location:
- applications/editors/josm/plugins
- Files:
-
- 14 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/merge-overlap/build.xml
r30778 r31655 4 4 <property name="commit.message" value="MergeOverlap: help shortcut parser, rebuild"/> 5 5 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 6 <property name="plugin.main.version" value=" 7674"/>6 <property name="plugin.main.version" value="8919"/> 7 7 8 8 <!-- Configure these properties (replace "..." accordingly). -
applications/editors/josm/plugins/merge-overlap/src/mergeoverlap/MergeOverlapAction.java
r30784 r31655 36 36 import org.openstreetmap.josm.command.SequenceCommand; 37 37 import org.openstreetmap.josm.corrector.ReverseWayTagCorrector; 38 import org.openstreetmap.josm.corrector.UserCancelException;39 38 import org.openstreetmap.josm.data.osm.Node; 40 39 import org.openstreetmap.josm.data.osm.OsmPrimitive; … … 46 45 import org.openstreetmap.josm.tools.Pair; 47 46 import org.openstreetmap.josm.tools.Shortcut; 47 import org.openstreetmap.josm.tools.UserCancelException; 48 48 49 49 /** -
applications/editors/josm/plugins/opendata/build.xml
r31116 r31655 1 1 <?xml version="1.0" encoding="utf-8"?> 2 2 <project name="opendata" default="dist" basedir="."> 3 <property name="plugin.main.version" value="8 323"/>3 <property name="plugin.main.version" value="8919"/> 4 4 <property name="plugin.author" value="Don-vip"/> 5 5 <property name="plugin.class" value="org.openstreetmap.josm.plugins.opendata.OdPlugin"/> -
applications/editors/josm/plugins/opendata/modules/fr.paris/src/org/openstreetmap/josm/plugins/opendata/modules/fr/paris/datasets/urbanisme/SanisettesHandler.java
r30731 r31655 6 6 import java.util.List; 7 7 8 import org.openstreetmap.josm.corrector.UserCancelException;9 8 import org.openstreetmap.josm.data.osm.DataSet; 10 9 import org.openstreetmap.josm.data.osm.Node; … … 12 11 import org.openstreetmap.josm.plugins.opendata.core.datasets.WayCombiner; 13 12 import org.openstreetmap.josm.plugins.opendata.modules.fr.paris.datasets.ParisDataSetHandler; 13 import org.openstreetmap.josm.tools.UserCancelException; 14 14 15 15 public class SanisettesHandler extends ParisDataSetHandler { -
applications/editors/josm/plugins/opendata/src/org/openstreetmap/josm/plugins/opendata/core/datasets/WayCombiner.java
r30723 r31655 17 17 import org.openstreetmap.josm.command.Command; 18 18 import org.openstreetmap.josm.corrector.ReverseWayTagCorrector; 19 import org.openstreetmap.josm.corrector.UserCancelException;20 19 import org.openstreetmap.josm.data.osm.Node; 21 20 import org.openstreetmap.josm.data.osm.OsmPrimitive; … … 24 23 import org.openstreetmap.josm.data.osm.Way; 25 24 import org.openstreetmap.josm.gui.conflict.tags.CombinePrimitiveResolverDialog; 25 import org.openstreetmap.josm.tools.UserCancelException; 26 26 27 27 // FIXME: Try to refactor CombineWayAction instead of using this class -
applications/editors/josm/plugins/opendata/src/org/openstreetmap/josm/plugins/opendata/core/io/geographic/GeographicReader.java
r31116 r31655 37 37 import org.opengis.referencing.operation.TransformException; 38 38 import org.openstreetmap.josm.Main; 39 import org.openstreetmap.josm.corrector.UserCancelException;40 39 import org.openstreetmap.josm.data.coor.LatLon; 41 40 import org.openstreetmap.josm.data.osm.Node; … … 51 50 import org.openstreetmap.josm.tools.ImageOverlay; 52 51 import org.openstreetmap.josm.tools.ImageProvider; 52 import org.openstreetmap.josm.tools.UserCancelException; 53 53 import org.openstreetmap.josm.tools.ImageProvider.ImageSizes; 54 54 -
applications/editors/josm/plugins/opendata/src/org/openstreetmap/josm/plugins/opendata/core/io/geographic/GmlReader.java
r31364 r31655 23 23 import org.opengis.referencing.operation.TransformException; 24 24 import org.openstreetmap.josm.Main; 25 import org.openstreetmap.josm.corrector.UserCancelException;26 25 import org.openstreetmap.josm.data.osm.DataSet; 27 26 import org.openstreetmap.josm.data.osm.Node; … … 33 32 import org.openstreetmap.josm.plugins.opendata.core.datasets.AbstractDataSetHandler; 34 33 import org.openstreetmap.josm.plugins.opendata.core.datasets.NationalHandlers; 34 import org.openstreetmap.josm.tools.UserCancelException; 35 35 36 36 import com.vividsolutions.jts.geom.Coordinate; -
applications/editors/josm/plugins/opendata/src/org/openstreetmap/josm/plugins/opendata/core/io/geographic/MifReader.java
r30730 r31655 306 306 if (index < words.length && "Bounds".equals(words[index])) { 307 307 // Useless parenthesis... "(minx, miny) (maxx, maxy)" 308 minx = Double. parseDouble(words[index+1].substring(1));309 miny = Double. parseDouble(words[index+2].substring(0, words[index+2].length()-1));310 maxx = Double. parseDouble(words[index+3].substring(1));311 maxy = Double. parseDouble(words[index+4].substring(0, words[index+4].length()-1));308 minx = Double.valueOf(words[index+1].substring(1)); 309 miny = Double.valueOf(words[index+2].substring(0, words[index+2].length()-1)); 310 maxx = Double.valueOf(words[index+3].substring(1)); 311 maxy = Double.valueOf(words[index+4].substring(0, words[index+4].length()-1)); 312 312 if (Main.isTraceEnabled()) { 313 313 Main.trace(Arrays.toString(words) + " -> "+minx+","+miny+","+maxx+","+maxy); -
applications/editors/josm/plugins/opendata/src/org/openstreetmap/josm/plugins/opendata/core/io/geographic/ShpReader.java
r30982 r31655 40 40 import org.opengis.referencing.operation.TransformException; 41 41 import org.openstreetmap.josm.Main; 42 import org.openstreetmap.josm.corrector.UserCancelException;43 42 import org.openstreetmap.josm.data.osm.DataSet; 44 43 import org.openstreetmap.josm.data.osm.Node; … … 50 49 import org.openstreetmap.josm.plugins.opendata.core.datasets.AbstractDataSetHandler; 51 50 import org.openstreetmap.josm.plugins.opendata.core.datasets.NationalHandlers; 51 import org.openstreetmap.josm.tools.UserCancelException; 52 52 53 53 import com.vividsolutions.jts.geom.Geometry; -
applications/editors/josm/plugins/terracer/build.xml
r30416 r31655 2 2 <project name="terracer" default="dist" basedir="."> 3 3 <property name="commit.message" value="applied #j5760 (patch by robome) - Order of housenumbers not correct"/> 4 <property name="plugin.main.version" value=" 7001"/>4 <property name="plugin.main.version" value="8919"/> 5 5 <property name="plugin.author" value="Matt Amos"/> 6 6 <property name="plugin.class" value="terracer.TerracerPlugin"/> -
applications/editors/josm/plugins/terracer/src/terracer/HouseNumberInputHandler.java
r30872 r31655 27 27 import org.openstreetmap.josm.Main; 28 28 import org.openstreetmap.josm.actions.JosmAction; 29 import org.openstreetmap.josm.corrector.UserCancelException;30 29 import org.openstreetmap.josm.data.osm.Node; 31 30 import org.openstreetmap.josm.data.osm.Relation; … … 33 32 import org.openstreetmap.josm.gui.tagging.ac.AutoCompletingComboBox; 34 33 import org.openstreetmap.josm.gui.tagging.ac.AutoCompletionListItem; 34 import org.openstreetmap.josm.tools.UserCancelException; 35 35 36 36 /** -
applications/editors/josm/plugins/terracer/src/terracer/TerracerAction.java
r30872 r31655 36 36 import org.openstreetmap.josm.command.DeleteCommand; 37 37 import org.openstreetmap.josm.command.SequenceCommand; 38 import org.openstreetmap.josm.corrector.UserCancelException;39 38 import org.openstreetmap.josm.data.osm.Node; 40 39 import org.openstreetmap.josm.data.osm.OsmPrimitive; … … 48 47 import org.openstreetmap.josm.tools.Pair; 49 48 import org.openstreetmap.josm.tools.Shortcut; 49 import org.openstreetmap.josm.tools.UserCancelException; 50 50 51 51 /** -
applications/editors/josm/plugins/utilsplugin2/build.xml
r31120 r31655 5 5 <property name="commit.message" value="[josm_utilsplugin2]: select boundary by double-click; multitagger table highlights"/> 6 6 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 7 <property name="plugin.main.version" value="8 338"/>7 <property name="plugin.main.version" value="8919"/> 8 8 9 9 <property name="plugin.author" value="Kalle Lampila, Upliner, Zverik, akks, joshdoe and others"/> -
applications/editors/josm/plugins/utilsplugin2/src/org/openstreetmap/josm/plugins/utilsplugin2/replacegeometry/ReplaceGeometryUtils.java
r31463 r31655 24 24 import org.openstreetmap.josm.command.DeleteCommand; 25 25 import org.openstreetmap.josm.command.MoveCommand; 26 import org.openstreetmap.josm.corrector.UserCancelException;27 26 import org.openstreetmap.josm.data.coor.LatLon; 28 27 import org.openstreetmap.josm.data.osm.Node; … … 35 34 import org.openstreetmap.josm.gui.Notification; 36 35 import org.openstreetmap.josm.gui.conflict.tags.CombinePrimitiveResolverDialog; 36 import org.openstreetmap.josm.tools.UserCancelException; 37 37 38 38 import edu.princeton.cs.algs4.AssignmentProblem;
Note:
See TracChangeset
for help on using the changeset viewer.