Uses of Class
org.openstreetmap.josm.tools.UserCancelException
-
Packages that use UserCancelException Package Description org.openstreetmap.josm.actions Provides the classes for JOSM user actions.org.openstreetmap.josm.actions.corrector Provides the classes for JOSMtag correctors
.org.openstreetmap.josm.gui.conflict.tags Provides the classes for resolving conflicts between OSM tags.org.openstreetmap.josm.gui.dialogs Provides three kinds of dialogs: Toggle dialogs on the right side of the GUI, that can be turned on, off, attached or detached from the GUI Changeset dialog based on a standalone implementation, dedicated to OSM changesets management Extended dialogs for everything elseorg.openstreetmap.josm.gui.oauth Provides GUI classes for handling OAuth authentication to OSM API. -
-
Uses of UserCancelException in org.openstreetmap.josm.actions
Methods in org.openstreetmap.josm.actions that throw UserCancelException Modifier and Type Method Description protected void
UnGlueAction. checkAndConfirmOutlyingUnglue()
static Pair<Way,Command>
CombineWayAction. combineWaysWorker(Collection<Way> ways)
Combine multiple ways into one.private JoinAreasAction.JoinAreasResult
JoinAreasAction. joinAreas(List<JoinAreasAction.Multipolygon> areas)
Will join two or more overlapping areasprivate Way
JoinAreasAction. joinOrientedWays(List<JoinAreasAction.WayInPolygon> ways)
Joins a list of ways (using CombineWayAction and ReverseWayAction as specified in WayInPath)private JoinAreasAction.Multipolygon
JoinAreasAction. joinPolygon(JoinAreasAction.AssembledMultipolygon polygon)
Joins the lists of ways.private Way
JoinAreasAction. joinWays(List<JoinAreasAction.WayInPolygon> ways)
Joins the outer ways and deletes all short ways that can't be part of a multipolygon anyway.static ReverseWayAction.ReverseWayResult
ReverseWayAction. reverseWay(Way w)
Reverses a given way.void
SessionSaveAsAction. saveSession()
Attempts to save the session.protected void
UnGlueAction. unglue()
private void
UnGlueAction. unglueOneWayAnyNodes()
dupe all nodes that are selected, and put the copies on the selected wayprivate void
UnGlueAction. unglueWays()
dupe a single node into as many nodes as there are ways using it, OR dupe a single node once, and put the copy on the selected way -
Uses of UserCancelException in org.openstreetmap.josm.actions.corrector
Methods in org.openstreetmap.josm.actions.corrector that throw UserCancelException Modifier and Type Method Description protected Collection<Command>
TagCorrector. applyCorrections(DataSet dataSet, Map<OsmPrimitive,List<TagCorrection>> tagCorrectionsMap, Map<OsmPrimitive,List<RoleCorrection>> roleCorrectionMap, String description)
Creates the commands to correct the tags.static void
ReverseWayNoTagCorrector. checkAndConfirmReverseWay(Way way)
Checks the given way can be safely reversed and asks user to confirm the operation if it not the case.Collection<Command>
ReverseWayTagCorrector. execute(Way oldway, Way way)
abstract Collection<Command>
TagCorrector. execute(P oldprimitive, P primitive)
Executes the tag correction. -
Uses of UserCancelException in org.openstreetmap.josm.gui.conflict.tags
Methods in org.openstreetmap.josm.gui.conflict.tags that throw UserCancelException Modifier and Type Method Description protected static void
CombinePrimitiveResolverDialog. informAboutRelationMembershipConflicts(Collection<? extends OsmPrimitive> primitives, Set<Relation> parentRelations)
Inform a non-expert user about what relation membership conflict resolution means.protected static void
CombinePrimitiveResolverDialog. informAboutTagConflicts(Collection<? extends OsmPrimitive> primitives, TagCollection normalizedTags)
Inform a non-expert user about what tag conflict resolution means.static List<Command>
CombinePrimitiveResolverDialog. launchIfNecessary(TagCollection tagsOfPrimitives, Collection<? extends OsmPrimitive> primitives, Collection<? extends OsmPrimitive> targetPrimitives)
Replies the list ofcommands
needed to resolve specified conflicts, by displaying if necessary aCombinePrimitiveResolverDialog
to the user. -
Uses of UserCancelException in org.openstreetmap.josm.gui.dialogs
Methods in org.openstreetmap.josm.gui.dialogs that throw UserCancelException Modifier and Type Method Description static PropertiesMembershipChoiceDialog
PropertiesMembershipChoiceDialog. showIfNecessary(Collection<Node> selectedNodes, boolean preselectNew)
Creates and shows a newPropertiesMembershipChoiceDialog
if necessary. -
Uses of UserCancelException in org.openstreetmap.josm.gui.oauth
Methods in org.openstreetmap.josm.gui.oauth that throw UserCancelException Modifier and Type Method Description void
OAuthAuthorizationWizard. showDialog()
Launches the wizard,sets the token
andsaves to preferences
.
-