org.apache.batik.apps.svgbrowser
Class HistoryBrowserInterface.AppendChildCommand

java.lang.Object
  extended byorg.apache.batik.apps.svgbrowser.AbstractUndoableCommand
      extended byorg.apache.batik.apps.svgbrowser.HistoryBrowserInterface.AppendChildCommand
All Implemented Interfaces:
UndoableCommand
Enclosing class:
HistoryBrowserInterface

public static class HistoryBrowserInterface.AppendChildCommand
extends AbstractUndoableCommand

The AppendChild command. Appends the given node to the given parent node as a last child.


Field Summary
protected  Node childNode
          The node to be appended.
protected  Node oldNextSibling
          The node's previous next sibling.
protected  Node oldParentNode
          The node's previous parent.
protected  Node parentNode
          The node's new parent.
 
Fields inherited from class org.apache.batik.apps.svgbrowser.AbstractUndoableCommand
name
 
Constructor Summary
HistoryBrowserInterface.AppendChildCommand(String commandName, Node parentNode, Node childNode)
          Constructor.
 
Method Summary
 void execute()
          Executes this command.
 void redo()
          Performs redo for this command.
 boolean shouldExecute()
          Tests if the command can be executed.
 void undo()
          Performs undo for this command.
 
Methods inherited from class org.apache.batik.apps.svgbrowser.AbstractUndoableCommand
getName, setName
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

oldParentNode

protected Node oldParentNode
The node's previous parent.


oldNextSibling

protected Node oldNextSibling
The node's previous next sibling.


parentNode

protected Node parentNode
The node's new parent.


childNode

protected Node childNode
The node to be appended.

Constructor Detail

HistoryBrowserInterface.AppendChildCommand

public HistoryBrowserInterface.AppendChildCommand(String commandName,
                                                  Node parentNode,
                                                  Node childNode)
Constructor.

Method Detail

execute

public void execute()
Description copied from interface: UndoableCommand
Executes this command.

Specified by:
execute in interface UndoableCommand
Overrides:
execute in class AbstractUndoableCommand

undo

public void undo()
Description copied from interface: UndoableCommand
Performs undo for this command.

Specified by:
undo in interface UndoableCommand
Overrides:
undo in class AbstractUndoableCommand

redo

public void redo()
Description copied from interface: UndoableCommand
Performs redo for this command.

Specified by:
redo in interface UndoableCommand
Overrides:
redo in class AbstractUndoableCommand

shouldExecute

public boolean shouldExecute()
Description copied from interface: UndoableCommand
Tests if the command can be executed.

Specified by:
shouldExecute in interface UndoableCommand
Overrides:
shouldExecute in class AbstractUndoableCommand


Copyright © 2009 Apache Software Foundation. All Rights Reserved.