Uses of Interface
org.openstreetmap.josm.gui.download.DownloadSource
-
Packages that use DownloadSource Package Description org.openstreetmap.josm.gui.download Provides GUI classes for the download dialog. -
-
Uses of DownloadSource in org.openstreetmap.josm.gui.download
Classes in org.openstreetmap.josm.gui.download that implement DownloadSource Modifier and Type Class Description class
OSMDownloadSource
Class defines the way data is fetched from the OSM server.class
OverpassDownloadSource
Class defines the way data is fetched from Overpass API.Fields in org.openstreetmap.josm.gui.download declared as DownloadSource Modifier and Type Field Description protected DownloadSource<T>
AbstractDownloadSourcePanel. downloadSource
The download source of this panel.Fields in org.openstreetmap.josm.gui.download with type parameters of type DownloadSource Modifier and Type Field Description private static List<DownloadSource<?>>
DownloadDialog. downloadSources
Methods in org.openstreetmap.josm.gui.download that return DownloadSource Modifier and Type Method Description DownloadSource<T>
AbstractDownloadSourcePanel. getDownloadSource()
Gets the download source of this panel.Methods in org.openstreetmap.josm.gui.download with parameters of type DownloadSource Modifier and Type Method Description static <T> void
DownloadDialog. addDownloadSource(DownloadSource<T> downloadSource)
Adds a new download source to the download dialog if it is not added.protected <T> void
DownloadDialog. addNewDownloadSourceTab(DownloadSource<T> downloadSource)
Adds the download source to the download sources tab.void
DownloadDialog.DownloadSourceTabs. downloadSourceAdded(DownloadSource<?> source)
void
DownloadSourceListener. downloadSourceAdded(DownloadSource<?> source)
Called when a download source has been added.static boolean
DownloadDialog. removeDownloadSource(DownloadSource<?> downloadSource)
Remove a download source from the download dialogConstructors in org.openstreetmap.josm.gui.download with parameters of type DownloadSource Constructor Description AbstractDownloadSourcePanel(DownloadSource<T> downloadSource)
Called when creating a newAbstractDownloadSourcePanel
for the given download source
-