Public Member Functions | |
XYZSeriesCollection () | |
Constructs an empty dataset. | |
XYZSeriesCollection (XYZSeries series) | |
Constructs a dataset and populates it with a single time series. | |
void | addSeries (XYZSeries series) |
Adds a series to the collection. | |
int | getSeriesCount () |
Returns the number of series in the collection. | |
List | getSeries () |
Returns a list of all the series in the collection. | |
XYZSeries | getSeries (int series) |
Returns a series. | |
String | getSeriesName (int series) |
Returns the name of a series. | |
int | getItemCount (int series) |
Returns the number of items in the specified series. | |
Number | getXValue (int series, int item) |
Returns the x-value for the specified series and item. | |
Number | getYValue (int series, int index) |
Returns the y-value for the specified series and item. | |
void | removeAllSeries () |
Removes all the series from the collection. | |
void | removeSeries (XYZSeries series) |
Removes a series from the collection. | |
void | removeSeries (int series) |
Removes a series from the collection. | |
boolean | equals (Object obj) |
Tests this collection for equality with an arbitrary object. | |
Number | getZValue (int series, int index) |
Returns the z-value for the specified series and item. | |
Private Attributes | |
List | data |
The series that are included in the collection. |
I, Lora E. Murphy, am only the author in the weakest possible sense. I got this wholesale from the JFreeChart package - XYSeriesCollection.java. I merely added the method for getZValue so that this implements the XYZDataset interface.
Copyright: Copyright (c) Charles D. Canham 2003
Company: Institute of Ecosystem Studies
|
Constructs an empty dataset.
|
|
Constructs a dataset and populates it with a single time series.
|
|
Adds a series to the collection. Notifies all registered listeners that the dataset has changed.
|
|
Tests this collection for equality with an arbitrary object.
|
|
Returns the number of items in the specified series.
|
|
Returns a series.
|
|
Returns a list of all the series in the collection.
|
|
Returns the number of series in the collection.
|
|
Returns the name of a series.
|
|
Returns the x-value for the specified series and item.
|
|
Returns the y-value for the specified series and item.
|
|
Returns the z-value for the specified series and item.
|
|
Removes all the series from the collection.
Notifies all registered listeners that the dataset has changed. |
|
Removes a series from the collection. Notifies all registered listeners that the dataset has changed.
|
|
Removes a series from the collection. Notifies all registered listeners that the dataset has changed.
|