Uses of Interface
jcckit.data.DataElement
-
Packages that use DataElement Package Description jcckit.data -
-
Uses of DataElement in jcckit.data
Classes in jcckit.data that implement DataElement Modifier and Type Class Description class
DataCurve
A curve is aDataContainer
ofDataPoints
.class
DataPoint
Immutable two-dimensional point in data coordinates.Methods in jcckit.data that return DataElement Modifier and Type Method Description DataElement
DataEvent. getDeletedElement()
Returns the deleted element.DataElement
DataContainer. getElement(int index)
Returns the element for the specified index.Methods in jcckit.data with parameters of type DataElement Modifier and Type Method Description void
DataContainer. addElement(DataElement element)
Adds aDataElement
.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.int
DataContainer. getIndexOf(DataElement element)
Returns the index of the specified element.void
DataContainer. insertElementAt(int index, DataElement element)
Inserts aDataElement
at the specified index.protected abstract boolean
DataContainer. isValid(DataElement element)
Returns true if the specifiedDataElement
has the correct type.protected boolean
DataCurve. isValid(DataElement element)
Returns true if element is an instance ofDataPoint
.protected boolean
DataPlot. isValid(DataElement element)
Returns true if element is an instance ofDataCurve
.void
DataContainer. replaceElementAt(int index, DataElement element)
Replaces theDataElement
at the specified index.
-