/**
* Removes a series from the collection and sends a
* {@link DatasetChangeEvent} to all registered listeners.
*
* @param series the series index (zero-based).
*/
/**
* Removes a series from the collection and sends a
* {@link DatasetChangeEvent} to all registered listeners.
*
* @param series the series index (zero-based).
*
* @since 1.0.10
*/
public void removeSeries(int series) {
if ((series < 0) || (series >= getSeriesCount())) {
throw new IllegalArgumentException("Series index out of bounds.");
}
[[#variable1ab5f2a0]] ts = ( [[#variable1ab5f2a0]]) this.data.get(series);
ts.removeChangeListener(this );
this.data.remove(series);
fireDatasetChanged();
}
/**
* Removes a series from the collection and sends a
* {@link DatasetChangeEvent} to all registered listeners.
*
* @param series the series (<code>null</code> not permitted).
*/
/**
* Removes a series from the collection and sends a
* {@link DatasetChangeEvent} to all registered listeners.
*
* @param series the series (<code>null</code> not permitted).
*
* @since 1.0.10
*/
public void removeSeries( [[#variable1ab5f2a0]] series) {
if (series == null) {
throw new IllegalArgumentException("Null \'series\' argument.");
}
if (this.data.contains(series)) {
series.removeChangeListener(this );
this.data.remove(series);
fireDatasetChanged();
}
}
/**
* Removes all the series from the collection and sends a
* {@link DatasetChangeEvent} to all registered listeners.
*/
/**
* Removes all the series from the collection and sends a
* {@link DatasetChangeEvent} to all registered listeners.
*
* @since 1.0.10
*/
public void removeAllSeries() {
// Unregister the collection as a change listener to each series in
// the collection.
for (int i = 0; i < this.data.size(); i++) {
[[#variable1ab5f2a0]] series = ( [[#variable1ab5f2a0]]) this.data.get(i);
series.removeChangeListener(this );
}
// Remove all the series from the collection and notify listeners.
this.data.clear();
fireDatasetChanged();
}
|