Package oracle.rules.sdk2.dictionary
Class UndoableEdit
java.lang.Object
oracle.rules.sdk2.dictionary.UndoableEdit
- All Implemented Interfaces:
UndoableEdit
Simplified version of javax.swing.undo.UndoableEdit.
A swing app should delegate to this class.
Note that undo and redo operations rollback any updates in progress on the RuleDictionary that generated the UndoableEdit.
-
Method Summary
Modifier and TypeMethodDescriptionboolean
addEdit
(UndoableEdit anEdit) boolean
canRedo()
True if it is still possible to redo this operation.boolean
canUndo()
True if it is still possible to undo this operation.void
die()
May be sent to inform an edit that it should no longer be used.boolean
void
redo()
Re-apply the edit, assuming that it has been undone.boolean
replaceEdit
(UndoableEdit anEdit) void
void
void
void
undo()
Undo the edit that was made.
-
Method Details
-
undo
Undo the edit that was made.- Specified by:
undo
in interfaceUndoableEdit
- Throws:
CannotUndoException
-
canUndo
public boolean canUndo()True if it is still possible to undo this operation.- Specified by:
canUndo
in interfaceUndoableEdit
-
redo
Re-apply the edit, assuming that it has been undone.- Specified by:
redo
in interfaceUndoableEdit
- Throws:
CannotRedoException
-
canRedo
public boolean canRedo()True if it is still possible to redo this operation.- Specified by:
canRedo
in interfaceUndoableEdit
-
die
public void die()May be sent to inform an edit that it should no longer be used. This is a useful hook for cleaning up state no longer needed once undoing or redoing is impossible--for example, deleting file resources used by objects that can no longer be undeleted.UndoManager
calls this before it dequeues edits. Note that this is a one-way operation. There is no "un-die" method.- Specified by:
die
in interfaceUndoableEdit
-
addEdit
- Specified by:
addEdit
in interfaceUndoableEdit
-
replaceEdit
- Specified by:
replaceEdit
in interfaceUndoableEdit
-
isSignificant
public boolean isSignificant()- Specified by:
isSignificant
in interfaceUndoableEdit
-
getPresentationName
- Specified by:
getPresentationName
in interfaceUndoableEdit
-
setPresentationName
-
getUndoPresentationName
- Specified by:
getUndoPresentationName
in interfaceUndoableEdit
-
setUndoPresentationName
-
getRedoPresentationName
- Specified by:
getRedoPresentationName
in interfaceUndoableEdit
-
setRedoPresentationName
-