java.lang.Object
java.util.EventObject
org.jfree.chart3d.Chart3DChangeEvent
- All Implemented Interfaces:
Serializable
An event indicating some change in the attributes of a chart. Typically
this indicates that the chart needs to be redrawn. 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.
Chart3DChangeListener
interface can register
with a chart to receive change event notification.
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
ConstructorsConstructorDescriptionChart3DChangeEvent
(Object source, Chart3D chart) Creates a new event.Chart3DChangeEvent
(Chart3D chart) Creates a new event. -
Method Summary
Methods inherited from class java.util.EventObject
getSource, toString
-
Constructor Details
-
Chart3DChangeEvent
Creates a new event.- Parameters:
chart
- the chart that is the source of the event (null
not permitted).
-
Chart3DChangeEvent
Creates a new event.- Parameters:
source
- the source.chart
- the chart that is the source of the event (null
not permitted).
-
-
Method Details
-
getChart
Returns the chart that this event is associated with.- Returns:
- The chart (never
null
).
-