List of utility methods to do Swing Tooltip
void | toolTip(JComponent c, String s) tool Tip String o = c.getToolTipText(); if (s != null && s.length() == 0) s = null; if (o == s) return; if (o == null || s == null || !o.equals(s)) c.setToolTipText(s); |
void | unregisterComponentAtTooltipManager(JComponent c) Unregisters a component at the ToolTipManager .
ToolTipManager.sharedInstance().unregisterComponent(c); |