Package jcckit.data
Class DataEvent
java.lang.Object
jcckit.data.DataEvent
Event to be sent to a
DataListener.-
Method Summary
Modifier and TypeMethodDescriptionstatic final DataEventcreateAddEvent(DataContainer container) Creates an event of typeDataEventType.ELEMENT_ADDEDfor the specified container.static final DataEventcreateInsertEvent(DataContainer container, int index) Creates an event of typeDataEventType.ELEMENT_INSERTEDfor the specified container.static final DataEventcreateRemoveEvent(DataContainer container, int index, DataElement removedElement) Creates an event of typeDataEventType.ELEMENT_REMOVEDfor the specified container.static final DataEventcreateReplaceEvent(DataContainer container, int index, DataElement replacedElement) Creates an event of typeDataEventType.ELEMENT_REPLACEDfor the specified container.Returns the container.Returns the deleted element.intgetIndex()Returns the index.getType()Returns the event type.
-
Method Details
-
createAddEvent
Creates an event of typeDataEventType.ELEMENT_ADDEDfor the specified container.- Parameters:
container- Container where an element has been added.- Returns:
- ELEMENT_ADDED event.
-
createInsertEvent
Creates an event of typeDataEventType.ELEMENT_INSERTEDfor the specified container.- Parameters:
container- Container where an element has been inserted.index- Index at which an element has been inserted.- Returns:
- ELEMENT_INSERTED event.
-
createReplaceEvent
public static final DataEvent createReplaceEvent(DataContainer container, int index, DataElement replacedElement) Creates an event of typeDataEventType.ELEMENT_REPLACEDfor the specified container.- Parameters:
container- Container where an element has been replaced.index- Index of the replaced element.replacedElement- The previous element at index.- Returns:
- ELEMENT_REPLACED event.
-
createRemoveEvent
public static final DataEvent createRemoveEvent(DataContainer container, int index, DataElement removedElement) Creates an event of typeDataEventType.ELEMENT_REMOVEDfor the specified container.- Parameters:
container- Container where an element has been removed.index- Index of the removed element.removedElement- The previous element at index.- Returns:
- ELEMENT_REMOVED event.
-
getContainer
Returns the container. -
getType
Returns the event type. Will be one of the constantsDataEventType.ELEMENT_ADDED,DataEventType.ELEMENT_INSERTED,DataEventType.ELEMENT_REMOVED, orDataEventType.ELEMENT_REPLACED. -
getIndex
public int getIndex()Returns the index. -
getDeletedElement
Returns the deleted element.- Returns:
- null if either an element has been added or inserted.
-