Class RichTooltipManager
- java.lang.Object
-
- org.pushingpixels.flamingo.api.common.RichTooltipManager
-
public class RichTooltipManager extends java.lang.Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classRichTooltipManager.JTrackableComponent
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetDismissDelay()Returns the dismissal delay value.intgetInitialDelay()Returns the initial delay value.voidhideCurrentlyShowingTipIfNecessary()voidsetDismissDelay(int milliseconds)Specifies the dismissal delay value.voidsetInitialDelay(int milliseconds)Specifies the initial delay value.static RichTooltipManagersharedInstance()Returns a sharedRichTooltipManagerinstance.
-
-
-
Method Detail
-
setInitialDelay
public void setInitialDelay(int milliseconds)
Specifies the initial delay value.- Parameters:
milliseconds- the number of milliseconds to delay (after the cursor has paused) before displaying the tooltip- See Also:
getInitialDelay()
-
getInitialDelay
public int getInitialDelay()
Returns the initial delay value.- Returns:
- an integer representing the initial delay value, in milliseconds
- See Also:
setInitialDelay(int)
-
setDismissDelay
public void setDismissDelay(int milliseconds)
Specifies the dismissal delay value.- Parameters:
milliseconds- the number of milliseconds to delay before taking away the tooltip- See Also:
getDismissDelay()
-
getDismissDelay
public int getDismissDelay()
Returns the dismissal delay value.- Returns:
- an integer representing the dismissal delay value, in milliseconds
- See Also:
setDismissDelay(int)
-
sharedInstance
public static RichTooltipManager sharedInstance()
Returns a sharedRichTooltipManagerinstance.- Returns:
- a shared
RichTooltipManagerobject
-
hideCurrentlyShowingTipIfNecessary
public void hideCurrentlyShowingTipIfNecessary()
-
-