source: josm/trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/ChangesetDownloadTask.java@ 6340

Last change on this file since 6340 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: 332 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.gui.dialogs.changeset;
3
4import java.util.Set;
5
6import org.openstreetmap.josm.data.osm.Changeset;
7
8public interface ChangesetDownloadTask extends Runnable{
9 Set<Changeset> getDownloadedChangesets();
10 boolean isCanceled();
11 boolean isFailed();
12}
Note: See TracBrowser for help on using the repository browser.