Serializable, UndoableEdit
AbstractDocument.ElementEdit, CompoundEdit, DefaultStyledDocument.AttributeUndoableEdit, StateEdit
public class AbstractUndoableEdit extends Object implements UndoableEdit, Serializable
UndoableEdit, implementing simple responses to all boolean methods in that interface.| Modifier and Type | Field | Description | 
|---|---|---|
| protected static final String | RedoName | String returned by  getRedoPresentationName; as of Java 2 platform v1.3.1 this field is no longer used. | 
| protected static final String | UndoName | String returned by  getUndoPresentationName; as of Java 2 platform v1.3.1 this field is no longer used. | 
| Constructor | Description | 
|---|---|
| AbstractUndoableEdit() | Creates an  AbstractUndoableEditwhich defaultshasBeenDoneandalivetotrue. | 
| Modifier and Type | Method | Description | 
|---|---|---|
| boolean | addEdit | This default implementation returns false. | 
| boolean | canRedo() | Returns  trueif this edit isaliveandhasBeenDoneisfalse. | 
| boolean | canUndo() | Returns true if this edit is  aliveandhasBeenDoneistrue. | 
| void | die() | Sets  aliveto false. | 
| String | getPresentationName() | This default implementation returns "". | 
| String | getRedoPresentationName() | Retrieves the value from the defaults table with key  AbstractUndoableEdit.redoTextand returns that value followed by a space, followed bygetPresentationName. | 
| String | getUndoPresentationName() | Retrieves the value from the defaults table with key  AbstractUndoableEdit.undoTextand returns that value followed by a space, followed bygetPresentationName. | 
| boolean | isSignificant() | This default implementation returns true. | 
| void | redo() | Throws  CannotRedoExceptionifcanRedoreturns false. | 
| boolean | replaceEdit | This default implementation returns false. | 
| String | toString() | Returns a string that displays and identifies this object's properties. | 
| void | undo() | Throws  CannotUndoExceptionifcanUndoreturnsfalse. | 
protected static final String UndoName
getUndoPresentationName; as of Java 2 platform v1.3.1 this field is no longer used. This value is now localized and comes from the defaults table with key AbstractUndoableEdit.undoText.protected static final String RedoName
getRedoPresentationName; as of Java 2 platform v1.3.1 this field is no longer used. This value is now localized and comes from the defaults table with key AbstractUndoableEdit.redoText.public AbstractUndoableEdit()
AbstractUndoableEdit which defaults hasBeenDone and alive to true.public void die()
alive to false. Note that this is a one way operation; dead edits cannot be resurrected. Sending undo or redo to a dead edit results in an exception being thrown. Typically an edit is killed when it is consolidated by another edit's addEdit or replaceEdit method, or when it is dequeued from an UndoManager.
die in interface UndoableEdit
public void undo() throws CannotUndoException
CannotUndoException if canUndo returns false. Sets hasBeenDone to false. Subclasses should override to undo the operation represented by this edit. Override should begin with a call to super.undo in interface UndoableEdit
CannotUndoException - if canUndo returns false
public boolean canUndo()
alive and hasBeenDone is true.canUndo in interface UndoableEdit
alive and hasBeenDone is true
public void redo() throws CannotRedoException
CannotRedoException if canRedo returns false. Sets hasBeenDone to true. Subclasses should override to redo the operation represented by this edit. Override should begin with a call to super.redo in interface UndoableEdit
CannotRedoException - if canRedo returns false
public boolean canRedo()
true if this edit is alive and hasBeenDone is false.canRedo in interface UndoableEdit
true if this edit is alive and hasBeenDone is false
public boolean addEdit(UndoableEdit anEdit)
addEdit in interface UndoableEdit
anEdit - the edit to be addedpublic boolean replaceEdit(UndoableEdit anEdit)
replaceEdit in interface UndoableEdit
anEdit - the edit to replacepublic boolean isSignificant()
isSignificant in interface UndoableEdit
public String getPresentationName()
getUndoPresentationName and getRedoPresentationName to construct the strings they return. Subclasses should override to return an appropriate description of the operation this edit represents.getPresentationName in interface UndoableEdit
public String getUndoPresentationName()
AbstractUndoableEdit.undoText and returns that value followed by a space, followed by getPresentationName. If getPresentationName returns "", then the defaults value is returned alone.getUndoPresentationName in interface UndoableEdit
AbstractUndoableEdit.undoText, followed by a space, followed by getPresentationName unless getPresentationName is "" in which case, the defaults value is returned alone.public String getRedoPresentationName()
AbstractUndoableEdit.redoText and returns that value followed by a space, followed by getPresentationName. If getPresentationName returns "", then the defaults value is returned alone.getRedoPresentationName in interface UndoableEdit
AbstractUndoableEdit.redoText, followed by a space, followed by getPresentationName unless getPresentationName is "" in which case, the defaults value is returned alone.public String toString()
    © 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
    https://docs.oracle.com/en/java/javase/21/docs/api/java.desktop/javax/swing/undo/AbstractUndoableEdit.html