java.lang.Object
java.util.EventObject
org.jfree.chart3d.data.Dataset3DChangeEvent
- All Implemented Interfaces:
Serializable
A dataset change event. Any object that implements the
NOTE: This class is serializable, but the serialization format is subject to change in future releases and should not be relied upon for persisting instances of this class.
Dataset3DChangeListener
interface can register with a dataset to
receive notification of change events. By default, the plot classes in
Orson Charts register with their dataset to monitor dataset changes.
NOTE: This class is serializable, but the serialization format is subject to change in future releases and should not be relied upon for persisting instances of this class.
- See Also:
-
Field Summary
Fields inherited from class java.util.EventObject
source
-
Constructor Summary
ConstructorsConstructorDescriptionDataset3DChangeEvent
(Object source, Object dataset) Creates a new dataset change event. -
Method Summary
Modifier and TypeMethodDescriptionReturns the dataset that this event is associated with.Methods inherited from class java.util.EventObject
getSource, toString
-
Constructor Details
-
Dataset3DChangeEvent
Creates a new dataset change event. The source can be the same as the dataset, but this is not required.- Parameters:
source
- the source.dataset
- the dataset.
-
-
Method Details
-
getDataset
Returns the dataset that this event is associated with. This will normally be an instance ofPieDataset3D
,CategoryDataset3D
orXYZDataset
.- Returns:
- The dataset.
-