org.jfree.data.general
public class: DatasetChangeEvent [javadoc |
source]
java.lang.Object
java.util.EventObject
org.jfree.data.general.DatasetChangeEvent
All Implemented Interfaces:
Serializable
A change event that encapsulates information about a change to a dataset.
| Constructor: |
public DatasetChangeEvent(Object source,
Dataset dataset) {
super(source);
this.dataset = dataset;
}
Parameters:
source - the source of the event.
dataset - the dataset that generated the event (null
permitted).
|
| Method from org.jfree.data.general.DatasetChangeEvent Summary: |
|---|
|
getDataset |
| Method from org.jfree.data.general.DatasetChangeEvent Detail: |
public Dataset getDataset() {
return this.dataset;
}
Returns the dataset that generated the event. Note that the dataset
may be null since adding a null dataset to a
plot will generated a change event. |