Package info.monitorenter.gui.chart
Interface IToolTipType
-
- All Known Implementing Classes:
Chart2D.ToolTipType
public interface IToolTipTypeDefines the tool tips to display on a.Chart2D- Author:
- Achim Westermann
- See Also:
Chart2D.setToolTipType(IToolTipType)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetDescription()Returns a description of this tool tip type (for UI display).java.lang.StringgetToolTipText(Chart2D chart, java.awt.event.MouseEvent me)The base class implementation that returns the tool tip text for the given mouse event which is a NONE implementation here.
-
-
-
Method Detail
-
getDescription
java.lang.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
java.lang.String getToolTipText(Chart2D chart, java.awt.event.MouseEvent me)
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.
-
-