java.lang.Object
java.util.EventObject
com.iamsoft.util.ui.swing.nameditem.UpdateEvent<T>
- Type Parameters:
T
- Type of element to be updated/deleted/added.
- All Implemented Interfaces:
Serializable
Deprecated.
Deprecated.
Object describing a change in an map entry object (add, update or delete). For an update,
the old and new values are non-null. For an add, the old value is null. For a delete,
the new value is null.
- See Also:
-
Field Summary
Fields inherited from class java.util.EventObject
source
-
Constructor Summary
ConstructorsConstructorDescriptionUpdateEvent
(NamedItemModel<? super T> pSrc, Map.Entry<String, T> pOldValue, Map.Entry<String, T> pNewValue) Deprecated. -
Method Summary
Modifier and TypeMethodDescriptionDeprecated.Null if event is a delete.Deprecated.Null if event is an insert.NamedItemModel<? super T>
Deprecated.Methods inherited from class java.util.EventObject
toString
-
Constructor Details
-
Method Details
-
getOldValue
Deprecated.Null if event is an insert. Otherwise, an immutable entry. -
getNewValue
Deprecated.Null if event is a delete. Otherwise, an immutable entry. -
getSource
Deprecated.- Overrides:
getSource
in classEventObject
-