Uses of Interface
jcckit.data.DataElement
-
Uses of DataElement in jcckit.data
Modifier and TypeClassDescriptionclass
A curve is aDataContainer
ofDataPoints
.class
Immutable two-dimensional point in data coordinates.Modifier and TypeMethodDescriptionDataEvent.getDeletedElement()
Returns the deleted element.DataContainer.getElement
(int index) Returns the element for the specified index.Modifier and TypeMethodDescriptionvoid
DataContainer.addElement
(DataElement element) Adds aDataElement
.static final DataEvent
DataEvent.createRemoveEvent
(DataContainer container, int index, DataElement removedElement) Creates an event of typeDataEventType.ELEMENT_REMOVED
for the specified container.static final 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.