Changeset 3210 in josm for trunk/src/org/openstreetmap/josm/corrector
- Timestamp:
- 2010-04-26T23:25:10+02:00 (14 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/corrector
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/corrector/ReverseWayTagCorrector.java
r3190 r3210 19 19 import org.openstreetmap.josm.data.osm.RelationMember; 20 20 import org.openstreetmap.josm.data.osm.Way; 21 22 /** 23 * A ReverseWayTagCorrector handles necessary corrections of tags 24 * when a way is reversed. E.g. oneway=yes needs to be changed 25 * to oneway=-1 and vice versa. 26 * 27 * The Corrector offers the automatic resolution in an dialog 28 * for the user to confirm. 29 */ 21 30 22 31 public class ReverseWayTagCorrector extends TagCorrector<Way> { -
trunk/src/org/openstreetmap/josm/corrector/TagCorrection.java
r3083 r3210 2 2 package org.openstreetmap.josm.corrector; 3 3 4 /** 5 * TagCorrection reprepresents a change of a single 6 * tag. Both key and value can be subject of this change. 7 */ 4 8 public class TagCorrection implements Correction { 5 9 -
trunk/src/org/openstreetmap/josm/corrector/TagCorrector.java
r3083 r3210 34 34 import org.openstreetmap.josm.tools.ImageProvider; 35 35 36 /** 37 * Abstract base class for automatic tag corrections. 38 * 39 * Subclasses call applyCorrections() with maps of the requested 40 * corrections and a dialog is pesented to the user to 41 * confirm these changes. 42 */ 43 36 44 public abstract class TagCorrector<P extends OsmPrimitive> { 37 45
Note:
See TracChangeset
for help on using the changeset viewer.