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

Last change on this file since 3128 was 3083, checked in by bastiK, 14 years ago

added svn:eol-style=native to source files

  • Property svn:eol-style set to native
File size: 506 bytes
Line 
1// License: GPL. Copyright 2007 by Immanuel Scholz and others
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 */
11 void addGui(DownloadDialog gui);
12
13 /**
14 * Sets the current download area. The area may be null to clear
15 * the current download area.
16 *
17 * @param are the current download area
18 */
19 public void setDownloadArea(Bounds area);
20}
Note: See TracBrowser for help on using the repository browser.