Uses of Class
org.openstreetmap.josm.io.MultiFetchServerObjectReader
-
Packages that use MultiFetchServerObjectReader Package Description org.openstreetmap.josm.gui.dialogs.relation Toggle dialog allowing to display currently loaded relations and perform operations on them.org.openstreetmap.josm.gui.io Provides GUI classes for handling input/output operations (download, upload, save).org.openstreetmap.josm.io Provides the classes for JOSM input/output support. -
-
Uses of MultiFetchServerObjectReader in org.openstreetmap.josm.gui.dialogs.relation
Fields in org.openstreetmap.josm.gui.dialogs.relation declared as MultiFetchServerObjectReader Modifier and Type Field Description private MultiFetchServerObjectReader
DownloadRelationTask. multiObjectReader
private MultiFetchServerObjectReader
DownloadRelationMemberTask. objectReader
protected MultiFetchServerObjectReader
ChildRelationBrowser.DownloadTask. reader
Methods in org.openstreetmap.josm.gui.dialogs.relation that return MultiFetchServerObjectReader Modifier and Type Method Description protected MultiFetchServerObjectReader
ChildRelationBrowser.DownloadTask. createReader()
-
Uses of MultiFetchServerObjectReader in org.openstreetmap.josm.gui.io
Fields in org.openstreetmap.josm.gui.io declared as MultiFetchServerObjectReader Modifier and Type Field Description protected MultiFetchServerObjectReader
AbstractPrimitiveTask. multiObjectReader
Methods in org.openstreetmap.josm.gui.io with parameters of type MultiFetchServerObjectReader Modifier and Type Method Description protected abstract void
AbstractPrimitiveTask. initMultiFetchReader(MultiFetchServerObjectReader reader)
protected void
DownloadPrimitivesTask. initMultiFetchReader(MultiFetchServerObjectReader reader)
protected void
UpdatePrimitivesTask. initMultiFetchReader(MultiFetchServerObjectReader reader)
-
Uses of MultiFetchServerObjectReader in org.openstreetmap.josm.io
Subclasses of MultiFetchServerObjectReader in org.openstreetmap.josm.io Modifier and Type Class Description class
MultiFetchOverpassObjectReader
Retrieves a set ofOsmPrimitive
s from an Overpass API server.Methods in org.openstreetmap.josm.io that return MultiFetchServerObjectReader Modifier and Type Method Description MultiFetchServerObjectReader
MultiFetchServerObjectReader. append(java.util.Collection<? extends OsmPrimitive> primitives)
appends a list ofOsmPrimitive
to the list of ids which will be fetched from the server.MultiFetchServerObjectReader
MultiFetchServerObjectReader. append(DataSet ds, long id, OsmPrimitiveType type)
appends aOsmPrimitive
id to the list of ids which will be fetched from the server.MultiFetchServerObjectReader
MultiFetchServerObjectReader. append(OsmPrimitive primitive)
appends anOsmPrimitive
to the list of ids which will be fetched from the server.MultiFetchServerObjectReader
MultiFetchServerObjectReader. appendNode(Node node)
appends aNode
id to the list of ids which will be fetched from the server.protected MultiFetchServerObjectReader
MultiFetchServerObjectReader. appendRelation(Relation relation)
appends aRelation
id to the list of ids which will be fetched from the server.MultiFetchServerObjectReader
MultiFetchServerObjectReader. appendWay(Way way)
appends aWay
id and the list of ids of nodes the way refers to the list of ids which will be fetched from the server.static MultiFetchServerObjectReader
MultiFetchServerObjectReader. create()
Creates a new instance ofMultiFetchServerObjectReader
orMultiFetchOverpassObjectReader
depending on thepreference
.static MultiFetchServerObjectReader
MultiFetchServerObjectReader. create(boolean fromMirror)
Creates a new instance ofMultiFetchServerObjectReader
orMultiFetchOverpassObjectReader
depending on thefromMirror
parameter.MultiFetchServerObjectReader
MultiFetchServerObjectReader. setRecurseDownAppended(boolean recurseAppended)
Determine how appended objects are treated.MultiFetchServerObjectReader
MultiFetchServerObjectReader. setRecurseDownRelations(boolean recurseDownRelations)
Should downloaded relations be complete?
-