com.github.gwtbootstrap.client.ui.base
Interface HasShowDelay

All Known Implementing Classes:
HoverBase, Popover, Tooltip

public interface HasShowDelay

Interface for widgets that can have a delay when they are shown or hidden.

Since:
2.0.4.0
Author:
Dominik Mayer

Method Summary
 int getHideDelay()
          Gets the time to wait until the widget is hidden.
 int getShowDelay()
          Gets the time to wait until the widget is shown.
 void setHideDelay(int delayInMilliseconds)
          Sets the time to wait until the widget is hidden.
 void setShowDelay(int delayInMilliseconds)
          Sets the time to wait until the widget is shown.
 

Method Detail

setShowDelay

void setShowDelay(int delayInMilliseconds)
Sets the time to wait until the widget is shown.

Parameters:
delayInMilliseconds - the delay in milliseconds

getShowDelay

int getShowDelay()
Gets the time to wait until the widget is shown.

Returns:
the delay in milliseconds

setHideDelay

void setHideDelay(int delayInMilliseconds)
Sets the time to wait until the widget is hidden.

Parameters:
delayInMilliseconds - the delay in milliseconds

getHideDelay

int getHideDelay()
Gets the time to wait until the widget is hidden.

Returns:
the delay in milliseconds


Copyright © 2012 gwtbootstrap. All Rights Reserved.