org.gwtbootstrap3.client.ui.base
Interface HasHover

All Known Implementing Classes:
Popover, Tooltip

public interface HasHover

Author:
Joshua Godi

Method Summary
 String getContainer()
          Get where the hover will render it's HTML code
 int getHideDelayMs()
          Get the delay in MS to hide the hover component
 Placement getPlacement()
          Get the Placement of the hover component
 int getShowDelayMs()
          Get the delay in MS to show the hover component
 Trigger getTrigger()
          Get the hover component's trigger
 boolean isAnimated()
          Get whether or not the hover widget will be animated
 boolean isHtml()
          Get whether or not the hover widget will render HTML
 void setContainer(String container)
          Sets the custom container that the hover's HTML will render in
 void setHideDelayMs(int hideDelayMs)
          Set the delay in MS that the hover component takes to hide
 void setIsAnimated(boolean isAnimated)
          Set whether or not to animate the displaying of the hover widget
 void setIsHtml(boolean isHtml)
          Set to make the hover widget display HTML code
 void setPlacement(Placement placement)
          Sets the placement of the hover component
 void setShowDelayMs(int showDelayMs)
          Set the delay in MS that the hover component takes to display
 void setTrigger(Trigger trigger)
          Set what will trigger the showing of the hover component
 

Method Detail

setIsAnimated

void setIsAnimated(boolean isAnimated)
Set whether or not to animate the displaying of the hover widget

Parameters:
isAnimated - boolean to animate or not

isAnimated

boolean isAnimated()
Get whether or not the hover widget will be animated

Returns:
boolean true = animated, false = not animated

setIsHtml

void setIsHtml(boolean isHtml)
Set to make the hover widget display HTML code

Parameters:
isHtml - boolean to render HTML code or not

isHtml

boolean isHtml()
Get whether or not the hover widget will render HTML

Returns:
boolean true = render HTML, false = don't render HTML

setPlacement

void setPlacement(Placement placement)
Sets the placement of the hover component

Parameters:
placement - Placement of the hover component

getPlacement

Placement getPlacement()
Get the Placement of the hover component

Returns:
Placement of the hover component

setTrigger

void setTrigger(Trigger trigger)
Set what will trigger the showing of the hover component

Parameters:
trigger - Trigger how the hover component will show

getTrigger

Trigger getTrigger()
Get the hover component's trigger

Returns:
Trigger how the hover component will show

setShowDelayMs

void setShowDelayMs(int showDelayMs)
Set the delay in MS that the hover component takes to display

Parameters:
showDelayMs - int number of MS to delay the display

getShowDelayMs

int getShowDelayMs()
Get the delay in MS to show the hover component

Returns:
int delay in MS

setHideDelayMs

void setHideDelayMs(int hideDelayMs)
Set the delay in MS that the hover component takes to hide

Parameters:
hideDelayMs - int number of MS to delay the hide

getHideDelayMs

int getHideDelayMs()
Get the delay in MS to hide the hover component

Returns:
int delay in MS

setContainer

void setContainer(String container)
Sets the custom container that the hover's HTML will render in

Parameters:
container - String selector of where to render the hover's HTML code

getContainer

String getContainer()
Get where the hover will render it's HTML code

Returns:
String selector where the hover renders to


Copyright © 2015. All rights reserved.