Uses of Class
jcckit.data.DataEvent

Packages that use DataEvent
jcckit.data Data classes.  
jcckit.plot Classes for generating plots and charts. 
 

Uses of DataEvent in jcckit.data
 

Methods in jcckit.data that return DataEvent
static DataEvent DataEvent.createAddEvent(DataContainer container)
          Creates an event of type DataEventType.ELEMENT_ADDED for the specified container.
static DataEvent DataEvent.createInsertEvent(DataContainer container, int index)
          Creates an event of type DataEventType.ELEMENT_INSERTED for the specified container.
static DataEvent DataEvent.createReplaceEvent(DataContainer container, int index, DataElement replacedElement)
          Creates an event of type DataEventType.ELEMENT_REPLACED for the specified container.
static DataEvent DataEvent.createRemoveEvent(DataContainer container, int index, DataElement removedElement)
          Creates an event of type DataEventType.ELEMENT_REMOVED for the specified container.
 

Methods in jcckit.data with parameters of type DataEvent
 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
 void Plot.dataChanged(DataEvent event)
          Handles the received DataEvent and notifies PlotListeners by an event of the type PlotEventType.DATA_CURVE_CHANGED or PlotEventType.DATA_PLOT_CHANGED.