Changeset 2327 in josm for trunk/src/org/openstreetmap/josm/actions/downloadtasks/DownloadTask.java
- Timestamp:
- 27.10.2009 01:21:32 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/downloadtasks/DownloadTask.java
r2322 r2327 5 5 import java.util.concurrent.Future; 6 6 7 import javax.swing.JCheckBox;8 9 7 import org.openstreetmap.josm.actions.DownloadAction; 8 import org.openstreetmap.josm.data.Bounds; 10 9 import org.openstreetmap.josm.gui.progress.ProgressMonitor; 11 10 … … 16 15 * if no error messages should be popped up. 17 16 */ 18 Future<?> download(DownloadAction action, double minlat, double minlon, 19 double maxlat, double maxlon, ProgressMonitor progressMonitor); 17 Future<?> download(DownloadAction action, Bounds downloadArea, ProgressMonitor progressMonitor); 20 18 21 19 /** … … 25 23 */ 26 24 Future<?> loadUrl(boolean newLayer, String url, ProgressMonitor progressMonitor); 27 28 /**29 * @return The checkbox presented to the user30 */31 JCheckBox getCheckBox();32 33 /**34 * @return The name of the preferences suffix to use for storing the35 * selection state.36 */37 String getPreferencesSuffix();38 25 39 26 /**
Note: See TracChangeset
for help on using the changeset viewer.
