Package org.esa.snap.rcp.nodes
Class UndoableProductNodeInsertion<T extends ProductNode>
- java.lang.Object
-
- javax.swing.undo.AbstractUndoableEdit
-
- org.esa.snap.rcp.nodes.UndoableProductNodeInsertion<T>
-
- Type Parameters:
T
- The product node type.
- All Implemented Interfaces:
Serializable
,UndoableEdit
public class UndoableProductNodeInsertion<T extends ProductNode> extends AbstractUndoableEdit
An undoable deletion of aProductNode
.- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class javax.swing.undo.AbstractUndoableEdit
RedoName, UndoName
-
-
Constructor Summary
Constructors Constructor Description UndoableProductNodeInsertion(ProductNodeGroup<T> productNodeGroup, T productNode)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
die()
String
getPresentationName()
T
getProductNode()
void
redo()
void
undo()
-
Methods inherited from class javax.swing.undo.AbstractUndoableEdit
addEdit, canRedo, canUndo, getRedoPresentationName, getUndoPresentationName, isSignificant, replaceEdit, toString
-
-
-
-
Constructor Detail
-
UndoableProductNodeInsertion
public UndoableProductNodeInsertion(ProductNodeGroup<T> productNodeGroup, T productNode)
-
-
Method Detail
-
getProductNode
public T getProductNode()
-
getPresentationName
public String getPresentationName()
- Specified by:
getPresentationName
in interfaceUndoableEdit
- Overrides:
getPresentationName
in classAbstractUndoableEdit
-
undo
public void undo() throws CannotUndoException
- Specified by:
undo
in interfaceUndoableEdit
- Overrides:
undo
in classAbstractUndoableEdit
- Throws:
CannotUndoException
-
redo
public void redo() throws CannotRedoException
- Specified by:
redo
in interfaceUndoableEdit
- Overrides:
redo
in classAbstractUndoableEdit
- Throws:
CannotRedoException
-
die
public void die()
- Specified by:
die
in interfaceUndoableEdit
- Overrides:
die
in classAbstractUndoableEdit
-
-