com.azalient.api.ui.undo
Interface IUndoStack
- All Superinterfaces:
- IUndoable
public interface IUndoStack
- extends IUndoable
A stack used to store undoable actions. As actions are executed in the user interface,
the undo action is pushed on to a stack, so that successive pops from the stack can
undo each initial action in turn.
- See Also:
APU.undoStack()
|
Method Summary |
void |
push(IUndoable u)
Push an undo action onto the stack |
IUndoable |
top()
Retrieve the top-most action, but leave it on the stack. |
push
void push(IUndoable u)
- Push an undo action onto the stack
top
IUndoable top()
- Retrieve the top-most action, but leave it on the stack.