Example usage for Java javax.swing ToolTipManager fields, constructors, methods, implement or subclass
The text is from its open source code.
int | getDismissDelay() Returns the dismissal delay value. |
int | getInitialDelay() Returns the initial delay value. |
int | getReshowDelay() Returns the reshow delay property. |
boolean | isEnabled() Returns true if this object is enabled. |
void | registerComponent(JComponent component) Registers a component for tooltip management. |
void | setDismissDelay(int milliseconds) Specifies the dismissal delay value. |
void | setEnabled(boolean flag) Enables or disables the tooltip. |
void | setInitialDelay(int milliseconds) Specifies the initial delay value. |
void | setLightWeightPopupEnabled(boolean aFlag) When displaying the JToolTip , the ToolTipManager chooses to use a lightweight JPanel if it fits. |
void | setReshowDelay(int milliseconds) Used to specify the amount of time before the user has to wait initialDelay milliseconds before a tooltip will be shown. |
ToolTipManager | sharedInstance() Returns a shared ToolTipManager instance. |