Uses of Class
org.openstreetmap.josm.command.PseudoCommand

Packages that use PseudoCommand
org.openstreetmap.josm.command   
org.openstreetmap.josm.gui.dialogs   
 

Uses of PseudoCommand in org.openstreetmap.josm.command
 

Subclasses of PseudoCommand in org.openstreetmap.josm.command
 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 ChangeNodesCommand
          Command that changes the nodes list of a way.
 class ChangePropertyCommand
          Command that manipulate the key/value structure of several objects.
 class ChangePropertyKeyCommand
          Command that replaces the key of several objects
 class ChangeRelationMemberRoleCommand
          Command that changes the role of a relation member
 class Command
          Classes implementing Command modify a dataset in a specific way.
 class ConflictAddCommand
           
 class ConflictResolveCommand
          This is the common base class for Commands which manipulate Conflicts in addition to OsmPrimitives.
 class CoordinateConflictResolveCommand
          Represents a the resolution of a conflict between the coordinates of two Nodes
 class DeleteCommand
          A command to delete a number of primitives from the dataset.
 class DeletedStateConflictResolveCommand
          Represents a the resolution of a conflict between the coordinates of two Nodes
 class ModifiedConflictResolveCommand
          Represents a command for to set the modified flag OsmPrimitive
 class MoveCommand
          MoveCommand moves a set of OsmPrimitives along the map.
 class PurgeCommand
          Command, to purge a list of primitives.
 class RelationMemberConflictResolverCommand
          Represent a command for resolving conflicts in the member lists of two Relations.
 class RotateCommand
          RotateCommand rotates a number of objects around their centre.
 class ScaleCommand
           
 class SequenceCommand
          A command consisting of a sequence of other commands.
 class TagConflictResolveCommand
          Represents a the resolution of a tag conflict in an OsmPrimitive
 class TransformNodesCommand
          Abstract class with common services for nodes rotation and scaling commands.
 class VersionConflictResolveCommand
          Represents a command for resolving a version conflict between two OsmPrimitive
 class WayNodesConflictResolverCommand
          Represent a command for resolving conflicts in the node list of two Ways.
 

Methods in org.openstreetmap.josm.command that return types with arguments of type PseudoCommand
 java.util.Collection<PseudoCommand> ChangePropertyKeyCommand.getChildren()
           
 java.util.Collection<PseudoCommand> PseudoCommand.getChildren()
          Returns the subcommands of this command.
 java.util.Collection<PseudoCommand> DeleteCommand.getChildren()
           
 java.util.Collection<PseudoCommand> SequenceCommand.getChildren()
           
 java.util.Collection<PseudoCommand> ChangePropertyCommand.getChildren()
           
 

Uses of PseudoCommand in org.openstreetmap.josm.gui.dialogs
 

Fields in org.openstreetmap.josm.gui.dialogs declared as PseudoCommand
protected  PseudoCommand CommandListMutableTreeNode.cmd
           
 

Methods in org.openstreetmap.josm.gui.dialogs that return PseudoCommand
 PseudoCommand CommandListMutableTreeNode.getCommand()
           
 

Methods in org.openstreetmap.josm.gui.dialogs with parameters of type PseudoCommand
protected  CommandListMutableTreeNode CommandStackDialog.getNodeForCommand(PseudoCommand c, int idx)
          Wraps a command in a CommandListMutableTreeNode.
 

Constructors in org.openstreetmap.josm.gui.dialogs with parameters of type PseudoCommand
CommandListMutableTreeNode(PseudoCommand cmd, int idx)
           
 



JOSM