Uses of Interface javax.swing.undo.UndoableEdit

Uses in package javax.swing.event

Constructors with parameter type javax.swing.undo.UndoableEdit

Constructor UndoableEditEvent

Methods with return type javax.swing.undo.UndoableEdit

UndoableEdit
getEdit

Uses in package javax.swing.undo

Classes implementing javax.swing.undo.UndoableEdit

class
A default implementation of UndoableEdit that can be used as a base for implementing editing operations.
class
An editing action that consists of multiple UndoableEdits.
class
A helper class, making it easy to support undo and redo.
class
A manager for providing an application’s undo/redo functionality.

Methods with parameter type javax.swing.undo.UndoableEdit

void
Notifies all registered listeners that an UndoableEditEvent has occured.
boolean
Incorporates another editing action into this one, thus forming a combined action.
boolean
Incorporates another editing action into this one, thus forming a combined edit.
boolean
Incorporates another editing action into this one, thus forming a combined action.
boolean
Registers an undoable editing action with this UndoManager.
void
If beginUpdate() has been called (so that the current update level is greater than zero), adds the specified edit to compoundEdit.
void
Redoes all editing actions in the same order as they were added to this UndoManager, up to the specified action.
boolean
Incorporates another editing action into this one, thus forming a combined action that replaces the argument action.
boolean
Incorporates another editing action into this one, thus forming a combined action that replaces the argument action.
void
Undoes all editing actions in reverse order of addition, up to the specified action,

Methods with return type javax.swing.undo.UndoableEdit

UndoableEdit
Determines which significant edit would be redone if redo() was called.
UndoableEdit
Determines which significant edit would be undone if undo() was called.
UndoableEdit
Returns the the UndoableEdit that was last added to this compound.

Uses in package javax.swing.text

Classes implementing javax.swing.undo.UndoableEdit

class
Stores the changes when a Document is beeing modified.
class
class
An UndoableEdit that can undo attribute changes to an element.

Methods with parameter type javax.swing.undo.UndoableEdit

boolean
Adds an UndoableEdit to this DocumentEvent.

Methods with return type javax.swing.undo.UndoableEdit

UndoableEdit
Inserts a string into the content model.
UndoableEdit
GapContent.insertString(int where, String str)
Inserts a string at the specified position.
UndoableEdit
Inserts str at the given position and returns an UndoableEdit that enables undo/redo support.
UndoableEdit
AbstractDocument.Content.remove(int where, int nitems)
Removes a piece of content from the content model.
UndoableEdit
GapContent.remove(int where, int nitems)
Removes a piece of content at th specified position.
UndoableEdit
StringContent.remove(int where, int nitems)
Removes the specified range of characters and returns an UndoableEdit that enables undo/redo support.