java.lang.Object
java.util.EventObject
org.jfree.chart3d.interaction.Chart3DMouseEvent
- All Implemented Interfaces:
Serializable
A mouse event for a chart that is displayed in a
Chart3DPanel
.- Since:
- 1.3
- See Also:
-
Field Summary
Fields inherited from class java.util.EventObject
source
-
Constructor Summary
ConstructorsConstructorDescriptionChart3DMouseEvent
(Chart3D chart, MouseEvent trigger, RenderedElement element) Constructs a new event. -
Method Summary
Modifier and TypeMethodDescriptiongetChart()
Returns the chart that the mouse event relates to.Returns the interactive element (if any) under the mouse point.Returns the mouse event that triggered this event.Methods inherited from class java.util.EventObject
getSource, toString
-
Constructor Details
-
Chart3DMouseEvent
Constructs a new event.- Parameters:
chart
- the source chart (null
not permitted).trigger
- the mouse event that triggered this event (null
not permitted).element
- the element (if any) under the mouse pointer (null
permitted).
-
-
Method Details
-
getChart
Returns the chart that the mouse event relates to.- Returns:
- The chart (never
null
).
-
getTrigger
Returns the mouse event that triggered this event.- Returns:
- The event (never
null
).
-
getElement
Returns the interactive element (if any) under the mouse point.- Returns:
- The chart entity (possibly
null
).
-