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

Last change on this file since 1180 was 1169, checked in by stoecker, 15 years ago

removed usage of tab stops

  • Property svn:eol-style set to native
File size: 415 bytes
Line 
1// License: GPL. Copyright 2007 by Immanuel Scholz and others
2package org.openstreetmap.josm.gui.download;
3
4
5public interface DownloadSelection {
6 /**
7 * Add the GUI elements to the dialog.
8 */
9 void addGui(DownloadDialog gui);
10
11 /**
12 * Update or clear display when a selection is made through another
13 * DownloadSelection object
14 */
15 void boundingBoxChanged(DownloadDialog gui);
16
17}
Note: See TracBrowser for help on using the repository browser.