Package org.eclipse.jface.text
Class DefaultUndoManager
java.lang.Object
org.eclipse.jface.text.DefaultUndoManager
- All Implemented Interfaces:
IUndoManager,IUndoManagerExtension
@Deprecated(forRemoval=true,
since="2025-03")
public class DefaultUndoManager
extends Object
implements IUndoManager, IUndoManagerExtension
Deprecated, for removal: This API element is subject to removal in a future version.
Standard implementation of
IUndoManager.
It registers with the connected text viewer as text input listener and document listener and logs all changes. It also monitors mouse and keyboard activities in order to partition the stream of text changes into undo-able edit commands.
Since 3.1 this undo manager is a facade to the global operation history.
The usage of IAdaptable in the JFace
layer has been approved by Platform UI, see https://bugs.eclipse.org/bugs/show_bug.cgi?id=87669#c9
This class is not intended to be subclassed.
- See Also:
- Restriction:
- This class is not intended to be subclassed by clients.
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected longDeprecated.protected longDeprecated. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidDeprecated.voidconnect(ITextViewer textViewer) Deprecated.voidDeprecated.voidDeprecated.Deprecated.voidredo()Deprecated.booleanredoable()Deprecated.voidreset()Deprecated.protected voidselectAndReveal(int offset, int length) Deprecated.voidsetMaximalUndoLevel(int undoLevel) Deprecated.voidundo()Deprecated.booleanundoable()Deprecated.
-
Field Details
-
fPreservedUndoModificationStamp
Deprecated.The document modification stamp for undo. -
fPreservedRedoModificationStamp
Deprecated.The document modification stamp for redo.
-
-
Constructor Details
-
DefaultUndoManager
Deprecated.Creates a new undo manager who remembers the specified number of edit commands.- Parameters:
undoLevel- the length of this manager's history
-
-
Method Details
-
beginCompoundChange
Deprecated.Description copied from interface:IUndoManagerSignals the undo manager that all subsequent changes untilendCompoundChangeis called are to be undone in one piece.- Specified by:
beginCompoundChangein interfaceIUndoManager
-
endCompoundChange
Deprecated.Description copied from interface:IUndoManagerSignals the undo manager that the sequence of changes which started withbeginCompoundChangehas been finished. All subsequent changes are considered to be individually undo-able.- Specified by:
endCompoundChangein interfaceIUndoManager
-
setMaximalUndoLevel
Deprecated.Description copied from interface:IUndoManagerThe given parameter determines the maximal length of the history remembered by the undo manager.- Specified by:
setMaximalUndoLevelin interfaceIUndoManager- Parameters:
undoLevel- the length of this undo manager's history
-
connect
Deprecated.Description copied from interface:IUndoManagerConnects this undo manager to the given text viewer.- Specified by:
connectin interfaceIUndoManager- Parameters:
textViewer- the viewer the undo manager is connected to
-
disconnect
Deprecated.Description copied from interface:IUndoManagerDisconnects this undo manager from its text viewer. If this undo manager hasn't been connected before this operation has no effect.- Specified by:
disconnectin interfaceIUndoManager
-
reset
Deprecated.Description copied from interface:IUndoManagerResets the history of the undo manager. After that call, there aren't any undo-able or redo-able text changes.- Specified by:
resetin interfaceIUndoManager
-
redoable
Deprecated.Description copied from interface:IUndoManagerReturns whether at least one text change can be repeated. A text change can be repeated only if it was executed and rolled back.- Specified by:
redoablein interfaceIUndoManager- Returns:
trueif at least on text change can be repeated
-
undoable
Deprecated.Description copied from interface:IUndoManagerReturns whether at least one text change can be rolled back.- Specified by:
undoablein interfaceIUndoManager- Returns:
trueif at least one text change can be rolled back
-
redo
Deprecated.Description copied from interface:IUndoManagerRepeats the most recently rolled back text change.- Specified by:
redoin interfaceIUndoManager
-
undo
Deprecated.Description copied from interface:IUndoManagerRolls back the most recently executed text change.- Specified by:
undoin interfaceIUndoManager
-
selectAndReveal
Deprecated.Selects and reveals the specified range.- Parameters:
offset- the offset of the rangelength- the length of the range- Since:
- 3.0
-
getUndoContext
Deprecated.Description copied from interface:IUndoManagerExtensionReturns this undo manager's undo context.- Specified by:
getUndoContextin interfaceIUndoManagerExtension- Returns:
- the undo context or
nullif the undo manager is not connected - See Also:
-
TextViewerUndoManager