Uses of Class
adams.gui.core.Undo.UndoPoint
-
Packages that use Undo.UndoPoint Package Description adams.gui.core adams.gui.event -
-
Uses of Undo.UndoPoint in adams.gui.core
Fields in adams.gui.core with type parameters of type Undo.UndoPoint Modifier and Type Field Description protected List<Undo.UndoPoint>
Undo. m_RedoList
the vector for the redo-points objects.protected List<Undo.UndoPoint>
Undo. m_UndoList
the vector for the undo-points objects.Methods in adams.gui.core that return Undo.UndoPoint Modifier and Type Method Description Undo.UndoPoint
Undo.UndoPoint. getClone()
Returns a copy of itself.Undo.UndoPoint
Undo. peekRedo()
"Peeks" at the last redo item.Undo.UndoPoint
Undo. peekUndo()
"Peeks" at the last undo item.Undo.UndoPoint
Undo. redo()
Returns the object from the next redo step and removes it from its internal list.protected Undo.UndoPoint
Undo. redo(boolean notify)
Returns the object from the next redo step and removes it from its internal list.Undo.UndoPoint
Undo. undo()
Returns the object from the next undo step and removes it from its internal list.protected Undo.UndoPoint
Undo. undo(boolean notify)
Returns the object from the next undo step and removes it from its internal list.Method parameters in adams.gui.core with type arguments of type Undo.UndoPoint Modifier and Type Method Description protected void
Undo. cleanUp(List<Undo.UndoPoint> list)
If "onDisk" is active, removes all files from disk, otherwise it only empties the list. -
Uses of Undo.UndoPoint in adams.gui.event
Fields in adams.gui.event declared as Undo.UndoPoint Modifier and Type Field Description protected Undo.UndoPoint
UndoEvent. m_UndoPoint
the undo point that got added, removed, etc.Methods in adams.gui.event that return Undo.UndoPoint Modifier and Type Method Description Undo.UndoPoint
UndoEvent. getUndoPoint()
Returns the undo point that was added to, removed from, etc.Constructors in adams.gui.event with parameters of type Undo.UndoPoint Constructor Description UndoEvent(Object source, Undo.UndoPoint undoPoint, UndoEvent.UndoType type, boolean success)
Initializes the event.
-