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

All Known Implementing Classes:
DateBox, DateBoxBase, Modal

public interface HasVisibleHandlers

Interface for components that can trigger actions when they are shown or hidden.

Since:
2.0.4.0
Author:
Dominik Mayer

Method Summary
 HandlerRegistration addHiddenHandler(HiddenHandler handler)
          Adds a HiddenEvent handler.
 HandlerRegistration addHideHandler(HideHandler handler)
          Adds a HideEvent handler.
 HandlerRegistration addShowHandler(ShowHandler handler)
          Adds a ShowEvent handler.
 HandlerRegistration addShownHandler(ShownHandler handler)
          Adds a ShownEvent handler.
 

Method Detail

addHideHandler

HandlerRegistration addHideHandler(HideHandler handler)
Adds a HideEvent handler.

Parameters:
handler - the hide handler
Returns:
HandlerRegistration used to remove this handler

addHiddenHandler

HandlerRegistration addHiddenHandler(HiddenHandler handler)
Adds a HiddenEvent handler.

Parameters:
handler - the hidden handler
Returns:
HandlerRegistration used to remove this handler

addShowHandler

HandlerRegistration addShowHandler(ShowHandler handler)
Adds a ShowEvent handler.

Parameters:
handler - the show handler
Returns:
HandlerRegistration used to remove this handler

addShownHandler

HandlerRegistration addShownHandler(ShownHandler handler)
Adds a ShownEvent handler.

Parameters:
handler - the shown handler
Returns:
HandlerRegistration used to remove this handler


Copyright © 2012 gwtbootstrap. All Rights Reserved.