Ignore:
Timestamp:
2009-10-27T18:49:09+01:00 (15 years ago)
Author:
Gubaer
Message:

Some updates in download dialog and related

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/download/DownloadSelection.java

    r1169 r2332  
    22package org.openstreetmap.josm.gui.download;
    33
     4import org.openstreetmap.josm.data.Bounds;
    45
    5 public interface DownloadSelection {
     6
     7public interface DownloadSelection  {
     8
    69    /**
    710     * Add the GUI elements to the dialog.
     
    912    void addGui(DownloadDialog gui);
    1013
     14   
    1115    /**
    12      * Update or clear display when a selection is made through another
    13      * DownloadSelection object
     16     * Sets the current download area. The area may be null to clear
     17     * the current download area.
     18     *
     19     * @param are the current download area
    1420     */
    15     void boundingBoxChanged(DownloadDialog gui);
     21    public void setDownloadArea(Bounds area);
     22}
    1623
    17 }
Note: See TracChangeset for help on using the changeset viewer.