Package info.monitorenter.gui.chart
Interface IToolTipType
- All Known Implementing Classes:
Chart2D.ToolTipType
public interface IToolTipType
Defines the tool tips to display on a
Chart2D
.- Author:
- Achim Westermann
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionReturns a description of this tool tip type (for UI display).getToolTipText
(Chart2D chart, MouseEvent me) The base class implementation that returns the tool tip text for the given mouse event which is a NONE implementation here.
-
Method Details
-
getDescription
String getDescription()Returns a description of this tool tip type (for UI display).- Returns:
- a description of this tool tip type (for UI display).
-
getToolTipText
The base class implementation that returns the tool tip text for the given mouse event which is a NONE implementation here.- Parameters:
chart
- the chart for computation of tool tips.me
- the corresponding mouse event.- Returns:
- the tool tip text for the given mouse event.
-