public class UndoableEditSupport extends Object
A support class used for managing UndoableEdit
listeners.
protected int updateLevel
protected CompoundEdit compoundEdit
protected Vector<UndoableEditListener> listeners
protected Object realSource
public UndoableEditSupport()
Constructs an UndoableEditSupport
object.
public UndoableEditSupport(Object r)
Constructs an UndoableEditSupport
object.
r
- an Object
public void addUndoableEditListener(UndoableEditListener l)
Registers an UndoableEditListener
. The listener is notified whenever an edit occurs which can be undone.
l
- an UndoableEditListener
objectremoveUndoableEditListener(javax.swing.event.UndoableEditListener)
public void removeUndoableEditListener(UndoableEditListener l)
Removes an UndoableEditListener
.
l
- the UndoableEditListener
object to be removedaddUndoableEditListener(javax.swing.event.UndoableEditListener)
public UndoableEditListener[] getUndoableEditListeners()
Returns an array of all the UndoableEditListener
s added to this UndoableEditSupport with addUndoableEditListener().
UndoableEditListener
s added or an empty array if no listeners have been addedprotected void _postEdit(UndoableEdit e)
Called only from postEdit
and endUpdate
. Calls undoableEditHappened
in all listeners. No synchronization is performed here, since the two calling methods are synchronized.
public void postEdit(UndoableEdit e)
DEADLOCK WARNING: Calling this method may call undoableEditHappened
in all listeners. It is unwise to call this method from one of its listeners.
public int getUpdateLevel()
Returns the update level value.
public void beginUpdate()
protected CompoundEdit createCompoundEdit()
Called only from beginUpdate
. Exposed here for subclasses' use.
public void endUpdate()
DEADLOCK WARNING: Calling this method may call undoableEditHappened
in all listeners. It is unwise to call this method from one of its listeners.
public String toString()
Returns a string that displays and identifies this object's properties.
© 1993–2017, 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.