Uses of Interface
jcckit.data.DataElement

Packages that use DataElement
jcckit.data Data classes.  
 

Uses of DataElement in jcckit.data
 

Classes in jcckit.data that implement DataElement
 class DataCurve
          A curve is a DataContainer of DataPoints.
 class DataPoint
          Immutable two-dimensional point in data coordinates.
 

Methods in jcckit.data that return DataElement
 DataElement DataContainer.getElement(int index)
          Returns the element for the specified index.
 DataElement DataEvent.getDeletedElement()
          Returns the deleted element.
 

Methods in jcckit.data with parameters of type DataElement
 int DataContainer.getIndexOf(DataElement element)
          Returns the index of the specified element.
 void DataContainer.addElement(DataElement element)
          Adds a DataElement.
 void DataContainer.insertElementAt(int index, DataElement element)
          Inserts a DataElement at the specified index.
 void DataContainer.replaceElementAt(int index, DataElement element)
          Replaces the DataElement at the specified index.
protected abstract  boolean DataContainer.isValid(DataElement element)
          Returns true if the specified DataElement has the correct type.
protected  boolean DataPlot.isValid(DataElement element)
          Returns true if element is an instance of DataCurve.
protected  boolean DataCurve.isValid(DataElement element)
          Returns true if element is an instance of DataPoint.
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.