|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
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 |
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 | |
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. |
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 |
DataCurve.isValid(DataElement element)
Returns true if element is an instance of DataPoint . |
protected boolean |
DataPlot.isValid(DataElement element)
Returns true if element is an instance of DataCurve . |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |