Class UndoableEdit

java.lang.Object
oracle.rules.sdk2.dictionary.UndoableEdit
All Implemented Interfaces:
UndoableEdit

public class UndoableEdit extends Object implements 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 Details

    • undo

      public void undo() throws CannotUndoException
      Undo the edit that was made.
      Specified by:
      undo in interface UndoableEdit
      Throws:
      CannotUndoException
    • canUndo

      public boolean canUndo()
      True if it is still possible to undo this operation.
      Specified by:
      canUndo in interface UndoableEdit
    • redo

      public void redo() throws CannotRedoException
      Re-apply the edit, assuming that it has been undone.
      Specified by:
      redo in interface UndoableEdit
      Throws:
      CannotRedoException
    • canRedo

      public boolean canRedo()
      True if it is still possible to redo this operation.
      Specified by:
      canRedo in interface UndoableEdit
    • 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 interface UndoableEdit
    • addEdit

      public boolean addEdit(UndoableEdit anEdit)
      Specified by:
      addEdit in interface UndoableEdit
    • replaceEdit

      public boolean replaceEdit(UndoableEdit anEdit)
      Specified by:
      replaceEdit in interface UndoableEdit
    • isSignificant

      public boolean isSignificant()
      Specified by:
      isSignificant in interface UndoableEdit
    • getPresentationName

      public String getPresentationName()
      Specified by:
      getPresentationName in interface UndoableEdit
    • setPresentationName

      public void setPresentationName(String pn)
    • getUndoPresentationName

      public String getUndoPresentationName()
      Specified by:
      getUndoPresentationName in interface UndoableEdit
    • setUndoPresentationName

      public void setUndoPresentationName(String pn)
    • getRedoPresentationName

      public String getRedoPresentationName()
      Specified by:
      getRedoPresentationName in interface UndoableEdit
    • setRedoPresentationName

      public void setRedoPresentationName(String pn)