Uses of Class
org.openstreetmap.josm.io.ChangesetQuery
-
Packages that use ChangesetQuery Package Description org.openstreetmap.josm.actions.downloadtasks Provides the classes for JOSMdownload tasks.org.openstreetmap.josm.gui.dialogs.changeset.query Provides classes allowing to query changesets to the OSM API.org.openstreetmap.josm.io Provides the classes for JOSM input/output support. -
-
Uses of ChangesetQuery in org.openstreetmap.josm.actions.downloadtasks
Fields in org.openstreetmap.josm.actions.downloadtasks declared as ChangesetQuery Modifier and Type Field Description private ChangesetQueryChangesetQueryTask.DownloadTask. querythe changeset queryConstructors in org.openstreetmap.josm.actions.downloadtasks with parameters of type ChangesetQuery Constructor Description ChangesetQueryTask(java.awt.Component parent, ChangesetQuery query)Creates the task.ChangesetQueryTask(ChangesetQuery query)Creates the task.DownloadTask(java.awt.Component parent, ChangesetQuery query) -
Uses of ChangesetQuery in org.openstreetmap.josm.gui.dialogs.changeset.query
Methods in org.openstreetmap.josm.gui.dialogs.changeset.query that return ChangesetQuery Modifier and Type Method Description ChangesetQueryAdvancedChangesetQueryPanel. buildChangesetQuery()Builds the changeset query based on the data entered in the form.ChangesetQueryBasicChangesetQueryPanel. buildChangesetQuery()Builds the changeset query.ChangesetQueryUrlBasedQueryPanel. buildChangesetQuery()Replies theChangesetQueryspecified in this panel.protected static ChangesetQueryUrlBasedQueryPanel. buildChangesetQuery(java.lang.String text)ChangesetQueryChangesetQueryDialog. getChangesetQuery()Returns the changeset query.Methods in org.openstreetmap.josm.gui.dialogs.changeset.query with parameters of type ChangesetQuery Modifier and Type Method Description voidBBoxRestrictionPanel. fillInQuery(ChangesetQuery query)Sets the query restrictions onqueryfor bbox based restrictions.voidOpenAndCloseStateRestrictionPanel. fillInQuery(ChangesetQuery query)Sets the query restrictions onqueryfor state based restrictions.voidRestrictionPanel. fillInQuery(ChangesetQuery query)Sets the query restrictions onquery.voidTimeRestrictionPanel. fillInQuery(ChangesetQuery query)Sets the query restrictions onqueryfor time based restrictions.voidUserRestrictionPanel. fillInQuery(ChangesetQuery query)Sets the query restrictions onqueryfor changeset owner based restrictions. -
Uses of ChangesetQuery in org.openstreetmap.josm.io
Methods in org.openstreetmap.josm.io that return ChangesetQuery Modifier and Type Method Description ChangesetQueryChangesetQuery. beingClosed(boolean isClosed)Restricts the result to changesets which are or aren't closed, depending on the value ofisClosedChangesetQueryChangesetQuery. beingOpen(boolean isOpen)Restricts the result to changesets which are or aren't open, depending on the value ofisOpenstatic ChangesetQueryChangesetQuery. buildFromUrlQuery(java.lang.String query)Replies a changeset query object from the query part of a OSM API URL for querying changesets.ChangesetQueryChangesetQuery. closedAfter(java.time.Instant d)Restricts the result to changesets which have been closed after the date given byd.ChangesetQueryChangesetQuery. closedAfterAndCreatedBefore(java.time.Instant closedAfter, java.time.Instant createdBefore)Restricts the result to changesets which have been closed afterclosedAfterand which have been created beforecreatedBefore.protected ChangesetQueryChangesetQuery.ChangesetQueryUrlParser. createFromMap(java.util.Map<java.lang.String,java.lang.String> queryParams)ChangesetQueryChangesetQuery. forChangesetIds(java.util.Collection<java.lang.Long> changesetIds)Restricts the query to the given changeset ids (which are added to previously added ones).static ChangesetQueryChangesetQuery. forCurrentUser()Replies a changeset query object restricted to the current user, if known.ChangesetQueryChangesetQuery. forUser(int uid)Restricts the query to changesets owned by the user with iduid.ChangesetQueryChangesetQuery. forUser(java.lang.String userName)Restricts the query to changesets owned by the user with user nameusername.ChangesetQueryChangesetQuery. inBbox(double minLon, double minLat, double maxLon, double maxLat)Replies a query which is restricted to a bounding box.ChangesetQueryChangesetQuery. inBbox(Bounds bbox)Replies a query which is restricted to a bounding box given bybbox.ChangesetQueryChangesetQuery. inBbox(LatLon min, LatLon max)Replies a query which is restricted to a bounding box.ChangesetQueryChangesetQuery.ChangesetQueryUrlParser. parse(java.lang.String query)Parses the changeset query given as URL query parameters and replies aChangesetQuery.Methods in org.openstreetmap.josm.io with parameters of type ChangesetQuery Modifier and Type Method Description java.util.List<Changeset>OsmServerChangesetReader. queryChangesets(ChangesetQuery query, ProgressMonitor monitor)Queries a list
-