java.lang.Object
java.util.EventObject
org.jfree.chart3d.marker.MarkerChangeEvent
- All Implemented Interfaces:
Serializable
An event associated with a change to a
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.
Marker
. These change
events will be generated by an marker and broadcast to the axis that owns the
marker (in the standard setup, the axis will then trigger its own change e
vent to notify the plot that a subcomponent of the axis has changed).
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.
- Since:
- 1.2
- See Also:
-
Field Summary
Fields inherited from class java.util.EventObject
source
-
Constructor Summary
ConstructorsConstructorDescriptionMarkerChangeEvent
(Object source, Marker marker) Creates a new event.MarkerChangeEvent
(Marker marker) Creates a new event. -
Method Summary
Methods inherited from class java.util.EventObject
getSource, toString
-
Constructor Details
-
MarkerChangeEvent
Creates a new event.- Parameters:
marker
- the marker (null
not permitted).
-
MarkerChangeEvent
Creates a new event.- Parameters:
source
- the event source.marker
- the marker (null
not permitted).
-
-
Method Details
-
getMarker
Returns the marker associated with this event.- Returns:
- The marker (never
null
).
-