Package groovy.util
Class ObservableList.ElementEvent
java.lang.Object
java.util.EventObject
java.beans.PropertyChangeEvent
groovy.util.ObservableList.ElementEvent
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
ObservableList.ElementAddedEvent,ObservableList.ElementClearedEvent,ObservableList.ElementRemovedEvent,ObservableList.ElementUpdatedEvent,ObservableList.MultiElementAddedEvent,ObservableList.MultiElementRemovedEvent
- Enclosing class:
- ObservableList
Base event type for observable list content changes.
- See Also:
-
Field Summary
Fields inherited from class java.util.EventObject
source -
Constructor Summary
ConstructorsConstructorDescriptionElementEvent(Object source, Object oldValue, Object newValue, int index, ObservableList.ChangeType type) Creates an element event. -
Method Summary
Methods inherited from class java.beans.PropertyChangeEvent
getNewValue, getOldValue, getPropagationId, getPropertyName, setPropagationId, toStringMethods inherited from class java.util.EventObject
getSource
-
Constructor Details
-
ElementEvent
public ElementEvent(Object source, Object oldValue, Object newValue, int index, ObservableList.ChangeType type) Creates an element event.- Parameters:
source- the event sourceoldValue- the previous value payloadnewValue- the new value payloadindex- the affected indextype- the specialized change type
-
-
Method Details
-
getIndex
public int getIndex()Returns the affected index.- Returns:
- the list index associated with the event
-
getType
public int getType()Returns the specialized event type ordinal.- Returns:
- the change type ordinal
-
getChangeType
Returns the specialized event type.- Returns:
- the change type
-
getTypeAsString
Returns the specialized event type name.- Returns:
- the change type name
-