Package org.jfree.chart.event
Class ChartProgressEvent
java.lang.Object
java.util.EventObject
org.jfree.chart.event.ChartProgressEvent
- All Implemented Interfaces:
Serializable
An event that contains information about the drawing progress of a chart.
- See Also:
-
Field Summary
Modifier and TypeFieldDescriptionstatic final int
Indicates drawing has finished.static final int
Indicates drawing has started.Fields inherited from class java.util.EventObject
source
-
Constructor Summary
ConstructorDescriptionChartProgressEvent
(Object source, JFreeChart chart, int type, int percent) Creates a new chart change event. -
Method Summary
Modifier and TypeMethodDescriptiongetChart()
Returns the chart that generated the change event.int
Returns the percentage complete.int
getType()
Returns the event type.void
setChart
(JFreeChart chart) Sets the chart that generated the change event.void
setPercent
(int percent) Sets the percentage complete.void
setType
(int type) Sets the event type.Methods inherited from class java.util.EventObject
getSource, toString
-
Field Details
-
DRAWING_STARTED
Indicates drawing has started.- See Also:
-
DRAWING_FINISHED
Indicates drawing has finished.- See Also:
-
-
Constructor Details
-
ChartProgressEvent
Creates a new chart change event.- Parameters:
source
- the source of the event (could be the chart, a title, an axis etc.)chart
- the chart that generated the event.type
- the type of event.percent
- the percentage of completion.
-
-
Method Details
-
getChart
Returns the chart that generated the change event.- Returns:
- The chart that generated the change event.
-
setChart
Sets the chart that generated the change event.- Parameters:
chart
- the chart that generated the event.
-
getType
Returns the event type.- Returns:
- The event type.
-
setType
Sets the event type.- Parameters:
type
- the event type.
-
getPercent
Returns the percentage complete.- Returns:
- The percentage complete.
-
setPercent
Sets the percentage complete.- Parameters:
percent
- the percentage.
-