Class AbstractDocument.ElementEdit
- java.lang.Object
-
- javax.swing.undo.AbstractUndoableEdit
-
- javax.swing.text.AbstractDocument.ElementEdit
- All Implemented Interfaces:
-
Serializable
,DocumentEvent.ElementChange
,UndoableEdit
- Enclosing class:
- AbstractDocument
public static class AbstractDocument.ElementEdit extends AbstractUndoableEdit implements DocumentEvent.ElementChange
An implementation of ElementChange that can be added to the document event.
- See Also:
- Serialized Form
Fields
Fields declared in class javax.swing.undo.AbstractUndoableEdit
RedoName, UndoName
Constructors
Constructor | Description |
---|---|
ElementEdit(Element e,
int index,
Element[] removed,
Element[] added) | Constructs an edit record. |
Methods
Modifier and Type | Method | Description |
---|---|---|
Element[] | getChildrenAdded() | Gets a list of children that were added. |
Element[] | getChildrenRemoved() | Gets a list of children that were removed. |
Element | getElement() | Returns the underlying element. |
int | getIndex() | Returns the index into the list of elements. |
void | redo() | Redoes a change. |
void | undo() | Undoes a change. |
Methods declared in class javax.swing.undo.AbstractUndoableEdit
addEdit, canRedo, canUndo, die, getPresentationName, getRedoPresentationName, getUndoPresentationName, isSignificant, replaceEdit, toString
Methods declared in class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Constructors
ElementEdit
public ElementEdit(Element e, int index, Element[] removed, Element[] added)
Constructs an edit record. This does not modify the element so it can safely be used to catch up a view to the current model state for views that just attached to a model.
- Parameters:
-
e
- the element -
index
- the index into the model >= 0 -
removed
- a set of elements that were removed -
added
- a set of elements that were added
Methods
getElement
public Element getElement()
Returns the underlying element.
- Specified by:
-
getElement
in interfaceDocumentEvent.ElementChange
- Returns:
- the element
getIndex
public int getIndex()
Returns the index into the list of elements.
- Specified by:
-
getIndex
in interfaceDocumentEvent.ElementChange
- Returns:
- the index >= 0
getChildrenRemoved
public Element[] getChildrenRemoved()
Gets a list of children that were removed.
- Specified by:
-
getChildrenRemoved
in interfaceDocumentEvent.ElementChange
- Returns:
- the list
getChildrenAdded
public Element[] getChildrenAdded()
Gets a list of children that were added.
- Specified by:
-
getChildrenAdded
in interfaceDocumentEvent.ElementChange
- Returns:
- the list
redo
public void redo() throws CannotRedoException
Redoes a change.
- Specified by:
-
redo
in interfaceUndoableEdit
- Overrides:
-
redo
in classAbstractUndoableEdit
- Throws:
-
CannotRedoException
- if the change cannot be redone - See Also:
AbstractUndoableEdit.canRedo()
undo
public void undo() throws CannotUndoException
Undoes a change.
- Specified by:
-
undo
in interfaceUndoableEdit
- Overrides:
-
undo
in classAbstractUndoableEdit
- Throws:
-
CannotUndoException
- if the change cannot be undone - See Also:
AbstractUndoableEdit.canUndo()
© 1993, 2020, 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/11/docs/api/java.desktop/javax/swing/text/AbstractDocument.ElementEdit.html