Package com.google.gwt.event.dom.client
Interface HasLoseCaptureHandlers
-
- All Superinterfaces:
HasHandlers
public interface HasLoseCaptureHandlers extends HasHandlers
A widget that implements this interface provides registration forLoseCaptureHandler
instances.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description HandlerRegistration
addLoseCaptureHandler(LoseCaptureHandler handler)
Adds aLoseCaptureEvent
handler.-
Methods inherited from interface com.google.gwt.event.shared.HasHandlers
fireEvent
-
-
-
-
Method Detail
-
addLoseCaptureHandler
HandlerRegistration addLoseCaptureHandler(LoseCaptureHandler handler)
Adds aLoseCaptureEvent
handler.- Parameters:
handler
- the lose capture handler- Returns:
HandlerRegistration
used to remove this handler
-
-