source: josm/trunk/src/org/openstreetmap/josm/gui/download/DownloadSelection.java@ 9243

Last change on this file since 9243 was 9243, checked in by Don-vip, 8 years ago

javadoc update

  • Property svn:eol-style set to native
File size: 520 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.gui.download;
3
4import org.openstreetmap.josm.data.Bounds;
5
6public interface DownloadSelection {
7
8 /**
9 * Add the GUI elements to the dialog.
10 * @param gui download dialog
11 */
12 void addGui(DownloadDialog gui);
13
14 /**
15 * Sets the current download area. The area may be null to clear
16 * the current download area.
17 *
18 * @param area the current download area
19 */
20 void setDownloadArea(Bounds area);
21}
Note: See TracBrowser for help on using the repository browser.