Package groovy.console.ui.text
Class TextUndoManager
- java.lang.Object
 - 
- javax.swing.undo.AbstractUndoableEdit
 - 
- javax.swing.undo.CompoundEdit
 - 
- javax.swing.undo.UndoManager
 - 
- groovy.console.ui.text.TextUndoManager
 
 
 
 
 
- 
- All Implemented Interfaces:
 Serializable,EventListener,UndoableEditListener,UndoableEdit
public class TextUndoManager extends UndoManager
To use this, simply drop this as an UndoableEditListener into your document, and then create actions to call undo/redo as needed (checking can undo/redo first, of course).- See Also:
 - Serialized Form
 
 
- 
- 
Field Summary
- 
Fields inherited from class javax.swing.undo.CompoundEdit
edits 
- 
Fields inherited from class javax.swing.undo.AbstractUndoableEdit
RedoName, UndoName 
 - 
 
- 
Constructor Summary
Constructors Constructor Description TextUndoManager()Creates a new instance of TextUndoManager. 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddPropertyChangeListener(PropertyChangeListener pcl)voiddie()voiddiscardAllEdits()protected voidfirePropertyChangeEvent(String name, boolean oldValue, boolean newValue)booleanhasChanged()voidredo()protected voidredoTo(UndoableEdit edit)voidremovePropertyChangeListener(PropertyChangeListener pcl)voidreset()protected voidtrimEdits(int from, int to)voidundo()voidundoableEditHappened(UndoableEditEvent uee)- 
Methods inherited from class javax.swing.undo.UndoManager
addEdit, canRedo, canUndo, canUndoOrRedo, editToBeRedone, editToBeUndone, end, getLimit, getRedoPresentationName, getUndoOrRedoPresentationName, getUndoPresentationName, setLimit, toString, trimForLimit, undoOrRedo, undoTo 
- 
Methods inherited from class javax.swing.undo.CompoundEdit
getPresentationName, isInProgress, isSignificant, lastEdit 
- 
Methods inherited from class javax.swing.undo.AbstractUndoableEdit
replaceEdit 
 - 
 
 - 
 
- 
- 
Method Detail
- 
addPropertyChangeListener
public void addPropertyChangeListener(PropertyChangeListener pcl)
 
- 
die
public void die()
- Specified by:
 diein interfaceUndoableEdit- Overrides:
 diein classCompoundEdit
 
- 
discardAllEdits
public void discardAllEdits()
- Overrides:
 discardAllEditsin classUndoManager
 
- 
firePropertyChangeEvent
protected void firePropertyChangeEvent(String name, boolean oldValue, boolean newValue)
 
- 
hasChanged
public boolean hasChanged()
 
- 
redo
public void redo() throws CannotRedoException- Specified by:
 redoin interfaceUndoableEdit- Overrides:
 redoin classUndoManager- Throws:
 CannotRedoException
 
- 
redoTo
protected void redoTo(UndoableEdit edit)
- Overrides:
 redoToin classUndoManager
 
- 
removePropertyChangeListener
public void removePropertyChangeListener(PropertyChangeListener pcl)
 
- 
reset
public void reset()
 
- 
trimEdits
protected void trimEdits(int from, int to)- Overrides:
 trimEditsin classUndoManager
 
- 
undo
public void undo() throws CannotUndoException- Specified by:
 undoin interfaceUndoableEdit- Overrides:
 undoin classUndoManager- Throws:
 CannotUndoException
 
- 
undoableEditHappened
public void undoableEditHappened(UndoableEditEvent uee)
- Specified by:
 undoableEditHappenedin interfaceUndoableEditListener- Overrides:
 undoableEditHappenedin classUndoManager
 
 - 
 
 -