Uses of Class
jcckit.data.DataEvent
-
Packages that use DataEvent Package Description jcckit.data jcckit.plot -
-
Uses of DataEvent in jcckit.data
Methods in jcckit.data that return DataEvent Modifier and Type Method Description static DataEvent
DataEvent. createAddEvent(DataContainer container)
Creates an event of typeDataEventType.ELEMENT_ADDED
for the specified container.static DataEvent
DataEvent. createInsertEvent(DataContainer container, int index)
Creates an event of typeDataEventType.ELEMENT_INSERTED
for the specified container.static DataEvent
DataEvent. createRemoveEvent(DataContainer container, int index, DataElement removedElement)
Creates an event of typeDataEventType.ELEMENT_REMOVED
for the specified container.static DataEvent
DataEvent. createReplaceEvent(DataContainer container, int index, DataElement replacedElement)
Creates an event of typeDataEventType.ELEMENT_REPLACED
for the specified container.Methods in jcckit.data with parameters of type DataEvent Modifier and Type Method Description void
DataListener. dataChanged(DataEvent event)
Sends the specified data event to this object. -
Uses of DataEvent in jcckit.plot
Methods in jcckit.plot with parameters of type DataEvent Modifier and Type Method Description void
Plot. dataChanged(DataEvent event)
Handles the receivedDataEvent
and notifiesPlotListeners
by an event of the typePlotEventType.DATA_CURVE_CHANGED
orPlotEventType.DATA_PLOT_CHANGED
.
-