- java.lang.Object
-
- java.util.EventObject
-
- org.jfree.chart.event.ChartChangeEvent
-
- org.jfree.chart.event.AnnotationChangeEvent
-
- All Implemented Interfaces:
Serializable
public class AnnotationChangeEvent extends ChartChangeEvent
An event that can be forwarded to anyAnnotationChangeListenerto signal a change to anAnnotation.- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class java.util.EventObject
source
-
-
Constructor Summary
Constructors Constructor Description AnnotationChangeEvent(Object source, Annotation annotation)Creates a newAnnotationChangeEventinstance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AnnotationgetAnnotation()Returns the annotation that triggered the event.-
Methods inherited from class org.jfree.chart.event.ChartChangeEvent
getChart, getType, setChart, setType
-
Methods inherited from class java.util.EventObject
getSource, toString
-
-
-
-
Constructor Detail
-
AnnotationChangeEvent
public AnnotationChangeEvent(Object source, Annotation annotation)
Creates a newAnnotationChangeEventinstance.- Parameters:
source- the event source.annotation- the annotation that triggered the event (nullnot permitted).
-
-
Method Detail
-
getAnnotation
public Annotation getAnnotation()
Returns the annotation that triggered the event.- Returns:
- The annotation that triggered the event (never
null).
-
-