Ignore:
Timestamp:
2010-04-26T23:25:10+02:00 (14 years ago)
Author:
bastiK
Message:

autocompletion rework; breaks tageditor plugin and possibly other plugins
(merged the 2 autocompletion systems; adds presets values for the properties dialog )

Location:
trunk/src/org/openstreetmap/josm/corrector
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/corrector/ReverseWayTagCorrector.java

    r3190 r3210  
    1919import org.openstreetmap.josm.data.osm.RelationMember;
    2020import 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 */
    2130
    2231public class ReverseWayTagCorrector extends TagCorrector<Way> {
  • trunk/src/org/openstreetmap/josm/corrector/TagCorrection.java

    r3083 r3210  
    22package org.openstreetmap.josm.corrector;
    33
     4/**
     5 * TagCorrection reprepresents a change of a single
     6 * tag. Both key and value can be subject of this change.
     7 */
    48public class TagCorrection implements Correction {
    59
  • trunk/src/org/openstreetmap/josm/corrector/TagCorrector.java

    r3083 r3210  
    3434import org.openstreetmap.josm.tools.ImageProvider;
    3535
     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 
    3644public abstract class TagCorrector<P extends OsmPrimitive> {
    3745
Note: See TracChangeset for help on using the changeset viewer.