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

Last change on this file since 237 was 237, checked in by framm, 17 years ago

Major download dialog reorg (now uses tabs, modified World Chooser with keyboard control, plugin interface allows adding of tabs)
New Userlist dialog shows people having edited selected items

File size: 441 bytes
Line 
1package org.openstreetmap.josm.gui.download;
2
3import org.openstreetmap.josm.data.coor.LatLon;
4import org.openstreetmap.josm.gui.preferences.PreferenceDialog;
5
6public interface DownloadSelection {
7 /**
8 * Add the GUI elements to the dialog.
9 */
10 void addGui(DownloadDialog gui);
11
12 /**
13 * Update or clear display when a selection is made through another
14 * DownloadSelection object
15 */
16 void boundingBoxChanged(DownloadDialog gui);
17
18}
Note: See TracBrowser for help on using the repository browser.