Uses of Interface
org.openstreetmap.josm.command.PseudoCommand
-
Packages that use PseudoCommand Package Description org.openstreetmap.josm.actions Provides the classes for JOSM user actions.org.openstreetmap.josm.command Provides the classes for JOSM commands allowing to modify an OSM data set.org.openstreetmap.josm.command.conflict Provides commands for handling conflicts.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 else -
-
Uses of PseudoCommand in org.openstreetmap.josm.actions
Classes in org.openstreetmap.josm.actions that implement PseudoCommand Modifier and Type Class Description private static class
JoinAreasAction.JoinAreaCommand
-
Uses of PseudoCommand in org.openstreetmap.josm.command
Classes in org.openstreetmap.josm.command that implement PseudoCommand Modifier and Type Class Description class
AbstractNodesCommand<C extends java.util.Collection<Node>>
Abstracts superclass ofChangeNodesCommand
/RemoveNodesCommand
.class
AddCommand
A command that adds an osm primitive to a dataset.class
AddPrimitivesCommand
Add primitives to a data layer.class
ChangeCommand
Command that basically replaces one OSM primitive by another of the same type.class
ChangeMembersCommand
Command that changes the members of a relation.class
ChangeNodesCommand
Command that changes the nodes list of a way.class
ChangePropertyCommand
Command that manipulate the key/value structure of several objects.(package private) static class
ChangePropertyCommand.OsmPseudoCommand
class
ChangePropertyKeyCommand
Command that replaces the key of one or several objects(package private) static class
ChangePropertyKeyCommand.SinglePrimitivePseudoCommand
class
ChangeRelationMemberRoleCommand
Command that changes the role of a relation memberclass
Command
Classes implementing Command modify a dataset in a specific way.class
DeleteCommand
A command to delete a number of primitives from the dataset.private static class
DeleteCommand.DeleteChildCommand
class
MoveCommand
MoveCommand moves a set of OsmPrimitives along the map.class
PurgeCommand
Command, to purge a list of primitives.class
RemoveNodesCommand
Command that removes a set of nodes from a way.class
RotateCommand
RotateCommand rotates a number of objects around their centre.class
ScaleCommand
Command, to scale a given set of primitives.class
SelectCommand
Command that selects OSM primitivesclass
SequenceCommand
A command consisting of a sequence of other commands.class
SplitWayCommand
Splits a way into multiple ways (all identical except for their node list).class
TransformNodesCommand
Abstract class with common services for nodes rotation and scaling commands.Methods in org.openstreetmap.josm.command that return types with arguments of type PseudoCommand Modifier and Type Method Description java.util.Collection<PseudoCommand>
ChangePropertyCommand. getChildren()
java.util.Collection<PseudoCommand>
ChangePropertyKeyCommand. getChildren()
java.util.Collection<PseudoCommand>
DeleteCommand. getChildren()
default java.util.Collection<PseudoCommand>
PseudoCommand. getChildren()
Returns the subcommands of this command.java.util.Collection<PseudoCommand>
SequenceCommand. getChildren()
-
Uses of PseudoCommand in org.openstreetmap.josm.command.conflict
Classes in org.openstreetmap.josm.command.conflict that implement PseudoCommand Modifier and Type Class Description class
ConflictAddCommand
Command used to add a new conflict.class
ConflictResolveCommand
class
CoordinateConflictResolveCommand
Represents the resolution of a conflict between the coordinates of twoNode
s.class
DeletedStateConflictResolveCommand
Represents the resolution of a conflict between the deleted flag of twoOsmPrimitive
s.class
ModifiedConflictResolveCommand
Represents the resolution of a conflict between the modified flag of twoOsmPrimitive
s.class
RelationMemberConflictResolverCommand
Represents the resolution of conflicts in the member list of twoRelation
s.class
TagConflictResolveCommand
Represents the resolution of a tag conflict in anOsmPrimitive
.class
VersionConflictResolveCommand
Represents the resolution of a version conflict between twoOsmPrimitive
s.class
WayNodesConflictResolverCommand
Represents the resolution of conflicts in the node list of twoWay
s. -
Uses of PseudoCommand in org.openstreetmap.josm.gui.dialogs
Classes in org.openstreetmap.josm.gui.dialogs that implement PseudoCommand Modifier and Type Class Description private static class
ValidatorDialog.AutofixCommand
Fields in org.openstreetmap.josm.gui.dialogs declared as PseudoCommand Modifier and Type Field Description protected PseudoCommand
CommandListMutableTreeNode. cmd
Methods in org.openstreetmap.josm.gui.dialogs that return PseudoCommand Modifier and Type Method Description PseudoCommand
CommandListMutableTreeNode. getCommand()
Returns the command.PseudoCommand
CommandStackDialog. getSelectedCommand()
Returns the selected undo/redo commandMethods in org.openstreetmap.josm.gui.dialogs with parameters of type PseudoCommand Modifier and Type Method Description protected static java.util.Collection<? extends OsmPrimitive>
CommandStackDialog. getAffectedPrimitives(PseudoCommand c)
Return primitives that are affected by some commandprotected CommandListMutableTreeNode
CommandStackDialog. getNodeForCommand(PseudoCommand c)
Wraps a command in a CommandListMutableTreeNode.Constructors in org.openstreetmap.josm.gui.dialogs with parameters of type PseudoCommand Constructor Description CommandListMutableTreeNode(PseudoCommand cmd)
Constructs a newCommandListMutableTreeNode
.
-