Home / Development / Documentation / 2.0.44 / InsertSiblingEdit
TreeGraph 2
 


info.bioinfweb.treegraph.document.undo.edit
Class InsertSiblingEdit

java.lang.Object
  extended by info.bioinfweb.treegraph.document.undo.DocumentEdit
      extended by info.bioinfweb.treegraph.document.undo.edit.InsertSiblingEdit
All Implemented Interfaces:
UndoableEdit
Direct Known Subclasses:
PasteSiblingEdit

public class InsertSiblingEdit
extends DocumentEdit

This edit is executed if a branch is selected and a new node should be inserted. In that case a new parent node is created under the branch which has the previous target node and a new node as children.

Author:
Ben Stöver

Field Summary
private  Node firstSibling
           
private  Node newParent
           
 
Fields inherited from class info.bioinfweb.treegraph.document.undo.DocumentEdit
document
 
Constructor Summary
InsertSiblingEdit(Document document, Node firstSibling, Node newSibling)
           
 
Method Summary
 String getPresentationName()
           
 void redo()
           
 void undo()
           
 
Methods inherited from class info.bioinfweb.treegraph.document.undo.DocumentEdit
addEdit, canRedo, canUndo, die, getIsSubedit, getRedoPresentationName, getUndoPresentationName, isSignificant, replaceEdit, setIsSubedit
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

firstSibling

private Node firstSibling

newParent

private Node newParent
Constructor Detail

InsertSiblingEdit

public InsertSiblingEdit(Document document,
                         Node firstSibling,
                         Node newSibling)
Method Detail

redo

public void redo()
          throws CannotRedoException
Specified by:
redo in interface UndoableEdit
Overrides:
redo in class DocumentEdit
Throws:
CannotRedoException

undo

public void undo()
          throws CannotUndoException
Specified by:
undo in interface UndoableEdit
Overrides:
undo in class DocumentEdit
Throws:
CannotUndoException

getPresentationName

public String getPresentationName()