Changeset 8093 in josm for trunk


Ignore:
Timestamp:
2015-02-21T16:36:02+01:00 (9 years ago)
Author:
stoecker
Message:

javadoc fixes

Location:
trunk/src/org/openstreetmap/josm
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/actions/downloadtasks/DownloadSessionTask.java

    r7937 r8093  
    7878     * Session importers can be added by plugins and there is currently
    7979     * no way to ensure that these are safe for remotecontol.
    80      * @return
     80     * @return <code>true</code> if session import is allowed
    8181     */
    8282    @Override
  • trunk/src/org/openstreetmap/josm/data/imagery/ImageryInfo.java

    r8092 r8093  
    711711    /**
    712712     * Sets the entry name and handle translation.
    713      * @param name The used language
     713     * @param language The used language
    714714     * @param name The entry name
    715715     * @since 8091
     
    826826    /**
    827827     * Sets the description text when existing.
    828      * @param name The used language
     828     * @param language The used language
    829829     * @param description the imagery description text
    830830     * @since 8091
  • trunk/src/org/openstreetmap/josm/gui/NavigatableComponent.java

    r7817 r8093  
    476476     * @param initial true if this call initializes the viewport.
    477477     */
    478     private void zoomNoUndoTo(EastNorth newCenter, double newScale, boolean intial) {
     478    private void zoomNoUndoTo(EastNorth newCenter, double newScale, boolean initial) {
    479479        if (!newCenter.equals(center)) {
    480480            EastNorth oldCenter = center;
    481481            center = newCenter;
    482             if (!intial) {
     482            if (!initial) {
    483483                firePropertyChange(PROPNAME_CENTER, oldCenter, newCenter);
    484484            }
     
    487487            double oldScale = scale;
    488488            scale = newScale;
    489             if (!intial) {
     489            if (!initial) {
    490490                firePropertyChange(PROPNAME_SCALE, oldScale, newScale);
    491491            }
    492492        }
    493493
    494         if (!intial) {
     494        if (!initial) {
    495495            repaint();
    496496            fireZoomChanged();
  • trunk/src/org/openstreetmap/josm/gui/widgets/TextContextualPopupMenu.java

    r8005 r8093  
    123123     * Detaches this contextual menu from its text component.
    124124     * @return {@code this}
    125      * @see #attach(JTextComponent)
     125     * @see #attach(JTextComponent, boolean)
    126126     */
    127127    protected TextContextualPopupMenu detach() {
  • trunk/src/org/openstreetmap/josm/plugins/ReadRemotePluginInformationTask.java

    r7655 r8093  
    105105     * Creates the file name for the cached plugin list and the icon cache file.
    106106     *
     107     * @param pluginDir directory of plugin for data storage
    107108     * @param site the name of the site
    108      * @param type icon cache or plugin list cache
    109109     * @return the file name for the cache file
    110110     */
Note: See TracChangeset for help on using the changeset viewer.