Package | Description |
---|---|
org.openstreetmap.josm.actions |
Provides the classes for JOSM user actions.
|
org.openstreetmap.josm.actions.downloadtasks |
Provides the classes for JOSM
download tasks . |
org.openstreetmap.josm.io.remotecontrol.handler |
Provides the classes for remote control handlers (features exposed to the browser).
|
Modifier and Type | Class and Description |
---|---|
private static class |
DownloadOsmInViewAction.DownloadOsmInViewTask |
Modifier and Type | Field and Description |
---|---|
protected java.util.List<java.lang.Class<? extends DownloadTask>> |
OpenLocationAction.downloadTasks
the list of download tasks
|
Modifier and Type | Method and Description |
---|---|
(package private) java.util.Collection<DownloadTask> |
OpenLocationAction.askWhichTasksToLoad(java.util.Collection<DownloadTask> tasks)
Asks the user which of the possible tasks to perform.
|
java.util.Collection<DownloadTask> |
OpenLocationAction.findDownloadTasks(java.lang.String url,
boolean isRemotecontrol)
Replies the list of download tasks accepting the given url.
|
Modifier and Type | Method and Description |
---|---|
boolean |
OpenLocationAction.addDownloadTaskClass(java.lang.Class<? extends DownloadTask> taskClass)
Adds a new download task to the supported ones.
|
(package private) java.util.Collection<DownloadTask> |
OpenLocationAction.askWhichTasksToLoad(java.util.Collection<DownloadTask> tasks)
Asks the user which of the possible tasks to perform.
|
Constructor and Description |
---|
WhichTasksToPerformDialog(javax.swing.JList<DownloadTask> list) |
Modifier and Type | Class and Description |
---|---|
class |
AbstractChangesetDownloadTask
Common abstract implementation of other changeset download tasks.
|
class |
AbstractDownloadTask<T>
Common abstract implementation of other download tasks.
|
class |
ChangesetContentDownloadTask
This is an asynchronous task for downloading the changeset content of a collection of changesets.
|
class |
ChangesetHeaderDownloadTask
This is an asynchronous task for downloading a collection of changests from the OSM server.
|
class |
ChangesetQueryTask
Asynchronous task to send a changeset query to the OSM API.
|
class |
DownloadGeoJsonTask
GeoJson download task.
|
class |
DownloadGpsTask
Task allowing to download GPS data.
|
class |
DownloadNotesTask
General task for downloading OSM notes.
|
class |
DownloadNotesUrlBoundsTask
Specialized task for downloading OSM notes within bounds.
|
class |
DownloadNotesUrlIdTask
Specialized task for downloading OSM notes by ID.
|
class |
DownloadOsmChangeCompressedTask
Task allowing to download compressed OSM-Change files (gzip, xz and bzip2)
|
class |
DownloadOsmChangeTask
Task allowing to download OsmChange data (http://wiki.openstreetmap.org/wiki/OsmChange).
|
class |
DownloadOsmCompressedTask
Task allowing to download compressed OSM files (gzip, xz and bzip2)
|
class |
DownloadOsmIdTask
Specialized task for downloading OSM objects by ID.
|
class |
DownloadOsmTask
Open the download dialog and download the data.
|
class |
DownloadOsmUrlTask
Task allowing to download an OSM url containing coordinates
|
class |
DownloadSessionTask
Task allowing to download JOSM session (*.jos, *.joz file).
|
Modifier and Type | Field and Description |
---|---|
private DownloadTask |
PostDownloadHandler.task |
Modifier and Type | Field and Description |
---|---|
private java.util.List<DownloadTask> |
DownloadTaskList.tasks |
Modifier and Type | Method and Description |
---|---|
private void |
DownloadTaskList.addDownloadTask(ProgressMonitor progressMonitor,
DownloadTask dt,
java.awt.geom.Rectangle2D td,
int i,
int n) |
Constructor and Description |
---|
PostDownloadHandler(DownloadTask task,
java.util.concurrent.Future<?> future)
Creates a new
PostDownloadHandler |
PostDownloadHandler(DownloadTask task,
java.util.concurrent.Future<?> future,
java.util.function.Consumer<java.util.Collection<java.lang.Object>> errorReporter)
Creates a new
PostDownloadHandler using a custom error reporter |
Modifier and Type | Field and Description |
---|---|
private java.util.Collection<DownloadTask> |
ImportHandler.suitableDownloadTasks |