| java.lang.Object java.util.EventObject org.jfree.chart.ChartMouseEvent
ChartMouseEvent | public ChartMouseEvent(JFreeChart chart, MouseEvent trigger, ChartEntity entity)(Code) | | Constructs a new event.
Parameters: chart - the source chart (null not permitted). Parameters: trigger - the mouse event that triggered this event (null not permitted). Parameters: entity - the chart entity (if any) under the mouse point (null permitted). |
getChart | public JFreeChart getChart()(Code) | | Returns the chart that the mouse event relates to.
The chart (never null ). |
getEntity | public ChartEntity getEntity()(Code) | | Returns the chart entity (if any) under the mouse point.
The chart entity (possibly null ). |
getTrigger | public MouseEvent getTrigger()(Code) | | Returns the mouse event that triggered this event.
The event (never null ). |
|
|