Uses of Class
com.luciad.gui.TLcdCannotUndoRedoException

Packages that use TLcdCannotUndoRedoException
Package
Description
GUI aspects independent of any chosen windows API.
  • Uses of TLcdCannotUndoRedoException in com.luciad.gui

    Modifier and Type
    Method
    Description
    final void
    ALcdUndoable.redo()
    This final implementation checks if it can be redone and if the undoable is still alive, and if so, calls ALcdUndoable.redoImpl().
    void
    ILcdUndoable.redo()
    Redoes the operation represented by this ILcdUndoable.
    protected abstract void
    ALcdUndoable.redoImpl()
    Implement this method with the actual redo behavior.
    protected void
    TLcdCompositeUndoable.redoImpl()
    Redoes all ILcdUndoable objects added to this composite in the order they were added.
    final void
    ALcdUndoable.undo()
    This final implementation checks if it can be undone and if the undoable is still alive, and if so, calls ALcdUndoable.undoImpl().
    void
    ILcdUndoable.undo()
    Undoes the operation represented by this ILcdUndoable.
    protected abstract void
    ALcdUndoable.undoImpl()
    Implement this method with the actual undo behavior.
    protected void
    TLcdCompositeUndoable.undoImpl()
    Undoes all added ILcdUndoable objects added to this composite in the reverse order they were added.