Package groovy.ui.text
Class TextUndoManager
- java.lang.Object
 - 
- javax.swing.undo.AbstractUndoableEdit
 - 
- javax.swing.undo.CompoundEdit
 - 
- javax.swing.undo.UndoManager
 - 
- groovy.ui.text.TextUndoManager
 
 
 
 
 
- 
- All Implemented Interfaces:
 Serializable,EventListener,UndoableEditListener,UndoableEdit
@Deprecated public class TextUndoManager extends UndoManager
Deprecated.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()Deprecated.Creates a new instance of TextUndoManager. 
- 
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidaddPropertyChangeListener(PropertyChangeListener pcl)Deprecated.voiddie()Deprecated.voiddiscardAllEdits()Deprecated.protected voidfirePropertyChangeEvent(String name, boolean oldValue, boolean newValue)Deprecated.booleanhasChanged()Deprecated.voidredo()Deprecated.protected voidredoTo(UndoableEdit edit)Deprecated.voidremovePropertyChangeListener(PropertyChangeListener pcl)Deprecated.voidreset()Deprecated.protected voidtrimEdits(int from, int to)Deprecated.voidundo()Deprecated.voidundoableEditHappened(UndoableEditEvent uee)Deprecated.- 
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)
Deprecated. 
- 
die
public void die()
Deprecated.- Specified by:
 diein interfaceUndoableEdit- Overrides:
 diein classCompoundEdit
 
- 
discardAllEdits
public void discardAllEdits()
Deprecated.- Overrides:
 discardAllEditsin classUndoManager
 
- 
firePropertyChangeEvent
protected void firePropertyChangeEvent(String name, boolean oldValue, boolean newValue)
Deprecated. 
- 
hasChanged
public boolean hasChanged()
Deprecated. 
- 
redo
public void redo() throws CannotRedoExceptionDeprecated.- Specified by:
 redoin interfaceUndoableEdit- Overrides:
 redoin classUndoManager- Throws:
 CannotRedoException
 
- 
redoTo
protected void redoTo(UndoableEdit edit)
Deprecated.- Overrides:
 redoToin classUndoManager
 
- 
removePropertyChangeListener
public void removePropertyChangeListener(PropertyChangeListener pcl)
Deprecated. 
- 
reset
public void reset()
Deprecated. 
- 
trimEdits
protected void trimEdits(int from, int to)Deprecated.- Overrides:
 trimEditsin classUndoManager
 
- 
undo
public void undo() throws CannotUndoExceptionDeprecated.- Specified by:
 undoin interfaceUndoableEdit- Overrides:
 undoin classUndoManager- Throws:
 CannotUndoException
 
- 
undoableEditHappened
public void undoableEditHappened(UndoableEditEvent uee)
Deprecated.- Specified by:
 undoableEditHappenedin interfaceUndoableEditListener- Overrides:
 undoableEditHappenedin classUndoManager
 
 - 
 
 -