Changed Methods |
boolean addEdit(UndoableEdit )
|
Documentation changed from old to new. |
This default implementation returns false. |
boolean canRedo()
|
Documentation changed from old to new. |
Returns true if this edit is alive and hasBeenDone is false . |
boolean canUndo()
|
Documentation changed from old to new. |
Returns true if this edit is alive and hasBeenDone is true . |
void die()
|
Documentation changed from old to new. |
Sets alive to false. |
String getPresentationName()
|
Documentation changed from old to new. |
This default implementation returns "". |
String getRedoPresentationName()
|
Documentation changed from old to new. |
Retreives the value from the defaults table with key AbstractUndoableEdit.redoText and returns that value followed by a space followed by getPresentationName . |
String getUndoPresentationName()
|
Documentation changed from old to new. |
Retreives the value from the defaults table with key AbstractUndoableEdit.undoText and returns that value followed by a space followed by getPresentationName . |
boolean isSignificant()
|
Documentation changed from old to new. |
This default implementation returns true. |
void redo()
|
Documentation changed from old to new. |
Throws CannotRedoException if canRedo returns false. |
boolean replaceEdit(UndoableEdit )
|
Documentation changed from old to new. |
This default implementation returns false. |
void undo()
|
Documentation changed from old to new. |
Throws CannotUndoException if canUndo returns false . |