Uses of Interface
org.apache.batik.apps.svgbrowser.UndoableCommand
-
Packages that use UndoableCommand Package Description org.apache.batik.apps.svgbrowser -
-
Uses of UndoableCommand in org.apache.batik.apps.svgbrowser
Classes in org.apache.batik.apps.svgbrowser that implement UndoableCommand Modifier and Type Class Description class
AbstractCompoundCommand
Abstract compound command.class
AbstractUndoableCommand
Represents abstract undoable/redoable command.static class
HistoryBrowserInterface.AppendChildCommand
The AppendChild command.static class
HistoryBrowserInterface.AttributeAddedCommand
Adds the attribute to an element (MutationEvent.ADDITION)static class
HistoryBrowserInterface.AttributeModifiedCommand
Modifies the attribute of an element (MutationEvent.MODIFICATION)static class
HistoryBrowserInterface.AttributeRemovedCommand
Removes the attribute of an element (MutationEvent.REMOVAL)static class
HistoryBrowserInterface.ChangeNodeValueCommand
The Change Node Value command.static class
HistoryBrowserInterface.CharDataModifiedCommand
Sets the node value.static class
HistoryBrowserInterface.CompoundUpdateCommand
The compound command.static class
HistoryBrowserInterface.InsertNodeBeforeCommand
Inserts the given node as a child to the given parent node before the specified sibling node, or as the last child of the given parent, if the sibling node is null.static class
HistoryBrowserInterface.NodeInsertedCommand
Inserts the given node as a child of another.static class
HistoryBrowserInterface.NodeRemovedCommand
Removes the node from its parent node.static class
HistoryBrowserInterface.RemoveChildCommand
The RemoveChild command.static class
HistoryBrowserInterface.ReplaceChildCommand
insertBeforeMethods in org.apache.batik.apps.svgbrowser that return UndoableCommand Modifier and Type Method Description UndoableCommand
HistoryBrowserInterface. createInsertChildCommand(org.w3c.dom.Node parent, org.w3c.dom.Node sibling, org.w3c.dom.Node child)
Creates InsertChildBefore or AppendChild command, depending on the value of siblingNode.Methods in org.apache.batik.apps.svgbrowser with parameters of type UndoableCommand Modifier and Type Method Description void
AbstractCompoundCommand. addCommand(UndoableCommand command)
Adds the given command to the atomCommand list.void
HistoryBrowser. addCommand(UndoableCommand command)
Adds the given command to history array and executes it.void
HistoryBrowser.CommandController. execute(UndoableCommand command)
Wrapps the execute method.void
HistoryBrowser.DocumentCommandController. execute(UndoableCommand command)
void
HistoryBrowserInterface. performCompoundUpdateCommand(UndoableCommand command)
Executes the given compound update command.void
HistoryBrowser.CommandController. redo(UndoableCommand command)
Wrapps the redo method.void
HistoryBrowser.DocumentCommandController. redo(UndoableCommand command)
void
HistoryBrowser.CommandController. undo(UndoableCommand command)
Wrapps the undo method.void
HistoryBrowser.DocumentCommandController. undo(UndoableCommand command)
-