Package com.google.gwt.event.dom.client
Interface HasChangeHandlers
-
- All Superinterfaces:
HasHandlers
- All Known Implementing Classes:
DoubleBox,FileUpload,IntegerBox,ListBox,LongBox,PasswordTextBox,TextArea,TextBox,TextBoxBase,ValueBox,ValueBoxBase
public interface HasChangeHandlers extends HasHandlers
A widget that implements this interface provides registration forChangeHandlerinstances.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description HandlerRegistrationaddChangeHandler(ChangeHandler handler)Adds aChangeEventhandler.-
Methods inherited from interface com.google.gwt.event.shared.HasHandlers
fireEvent
-
-
-
-
Method Detail
-
addChangeHandler
HandlerRegistration addChangeHandler(ChangeHandler handler)
Adds aChangeEventhandler.- Parameters:
handler- the change handler- Returns:
HandlerRegistrationused to remove this handler
-
-