Package com.google.gwt.event.dom.client
Interface HasErrorHandlers
-
- All Superinterfaces:
HasHandlers
- All Known Implementing Classes:
Image
public interface HasErrorHandlers extends HasHandlers
A widget that implements this interface provides registration forErrorHandler
instances.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description HandlerRegistration
addErrorHandler(ErrorHandler handler)
Adds anErrorEvent
handler.-
Methods inherited from interface com.google.gwt.event.shared.HasHandlers
fireEvent
-
-
-
-
Method Detail
-
addErrorHandler
HandlerRegistration addErrorHandler(ErrorHandler handler)
Adds anErrorEvent
handler.- Parameters:
handler
- the error handler- Returns:
HandlerRegistration
used to remove this handler
-
-