| java.lang.Object | ||
| ↳ | org.jfree.data.general.AbstractDataset | |
| ↳ | org.jfree.data.general.AbstractSeriesDataset | |
Known Direct Subclasses
|
An abstract implementation of the SeriesDataset interface,
containing a mechanism for registering change listeners.
| Protected Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Creates a new dataset.
| |||||||||||
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Returns the number of series in the dataset.
| |||||||||||
Returns the key for a series.
| |||||||||||
Returns the index of the named series, or -1.
| |||||||||||
Called when a series belonging to the dataset changes.
| |||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
org.jfree.data.general.AbstractDataset
| |||||||||||
From class
java.lang.Object
| |||||||||||
From interface
java.io.ObjectInputValidation
| |||||||||||
From interface
org.jfree.data.general.Dataset
| |||||||||||
From interface
org.jfree.data.general.SeriesChangeListener
| |||||||||||
From interface
org.jfree.data.general.SeriesDataset
| |||||||||||
Creates a new dataset.
Returns the number of series in the dataset.
Returns the key for a series.
If series is not within the specified range, the
implementing method should throw an IndexOutOfBoundsException
(preferred) or an IllegalArgumentException.
| series | the series index (in the range 0 to
getSeriesCount() - 1). |
|---|
Returns the index of the named series, or -1.
| seriesKey | the series key (null permitted). |
|---|
Called when a series belonging to the dataset changes.
| event | information about the change. |
|---|