Ignore:
Timestamp:
2012-06-03T16:41:25+02:00 (12 years ago)
Author:
bastiK
Message:

fixed majority of javadoc warnings by replacing "{@see" by "{@link"

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/layer/Layer.java

    r5048 r5266  
    239239    /**
    240240     * Sets the visibility of this layer. Emits property change event for
    241      * property {@see #VISIBLE_PROP}.
     241     * property {@link #VISIBLE_PROP}.
    242242     *
    243243     * @param visible true, if the layer is visible; false, otherwise.
     
    287287
    288288    /**
    289      * Adds a {@see PropertyChangeListener}
     289     * Adds a {@link PropertyChangeListener}
    290290     *
    291291     * @param listener the listener
     
    296296
    297297    /**
    298      * Removes a {@see PropertyChangeListener}
     298     * Removes a {@link PropertyChangeListener}
    299299     *
    300300     * @param listener the listener
     
    305305
    306306    /**
    307      * fires a property change for the property {@see #VISIBLE_PROP}
     307     * fires a property change for the property {@link #VISIBLE_PROP}
    308308     *
    309309     * @param oldValue the old value
     
    315315
    316316    /**
    317      * fires a property change for the property {@see #OPACITY_PROP}
     317     * fires a property change for the property {@link #OPACITY_PROP}
    318318     *
    319319     * @param oldValue the old value
     
    406406    public void projectionChanged(Projection oldValue, Projection newValue) {
    407407        if(!isProjectionSupported(newValue)) {
    408               JOptionPane.showMessageDialog(Main.parent,
    409                   tr("The layer {0} does not support the new projection {1}.\n{2}\n"
    410                   + "Change the projection again or remove the layer.",
    411                       getName(), newValue.toCode(), nameSupportedProjections()),
    412                       tr("Warning"),
    413                       JOptionPane.WARNING_MESSAGE);
     408            JOptionPane.showMessageDialog(Main.parent,
     409                    tr("The layer {0} does not support the new projection {1}.\n{2}\n"
     410                            + "Change the projection again or remove the layer.",
     411                            getName(), newValue.toCode(), nameSupportedProjections()),
     412                            tr("Warning"),
     413                            JOptionPane.WARNING_MESSAGE);
    414414        }
    415415    }
Note: See TracChangeset for help on using the changeset viewer.