Class ChangesetQueryTask
- java.lang.Object
-
- org.openstreetmap.josm.actions.downloadtasks.AbstractDownloadTask<java.util.Set<Changeset>>
-
- org.openstreetmap.josm.actions.downloadtasks.AbstractChangesetDownloadTask
-
- org.openstreetmap.josm.actions.downloadtasks.ChangesetQueryTask
-
- All Implemented Interfaces:
DownloadTask
public class ChangesetQueryTask extends AbstractChangesetDownloadTask
Asynchronous task to send a changeset query to the OSM API.- Since:
- 2689
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description (package private) class
ChangesetQueryTask.DownloadTask
-
Nested classes/interfaces inherited from class org.openstreetmap.josm.actions.downloadtasks.AbstractChangesetDownloadTask
AbstractChangesetDownloadTask.RunnableDownloadTask
-
-
Field Summary
-
Fields inherited from class org.openstreetmap.josm.actions.downloadtasks.AbstractDownloadTask
downloadedData, zoomAfterDownload
-
-
Constructor Summary
Constructors Constructor Description ChangesetQueryTask(java.awt.Component parent, ChangesetQuery query)
Creates the task.ChangesetQueryTask(ChangesetQuery query)
Creates the task.
-
Method Summary
-
Methods inherited from class org.openstreetmap.josm.actions.downloadtasks.AbstractChangesetDownloadTask
cancel, download, download, getConfirmationMessage, loadUrl, setDownloadTask
-
Methods inherited from class org.openstreetmap.josm.actions.downloadtasks.AbstractDownloadTask
acceptsUrl, acceptsUrl, getDownloadedData, getDownloadProjectionBounds, getErrorObjects, getPatterns, getTitle, isCanceled, isFailed, isSafeForRemotecontrolRequests, patterns, rememberDownloadedData, rememberErrorMessage, rememberException, setCanceled, setFailed, setZoomAfterDownload, toString
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.openstreetmap.josm.actions.downloadtasks.DownloadTask
acceptsDocumentationSummary, getErrorMessages
-
-
-
-
Constructor Detail
-
ChangesetQueryTask
public ChangesetQueryTask(ChangesetQuery query)
Creates the task.- Parameters:
query
- the query to submit to the OSM server. Must not be null.- Throws:
java.lang.IllegalArgumentException
- if query is null.
-
ChangesetQueryTask
public ChangesetQueryTask(java.awt.Component parent, ChangesetQuery query)
Creates the task.- Parameters:
parent
- the parent component relative to which thePleaseWaitDialog
is displayed. Must not be null.query
- the query to submit to the OSM server. Must not be null.- Throws:
java.lang.IllegalArgumentException
- if query is null.java.lang.IllegalArgumentException
- if parent is null
-
-