Package com.google.gwt.user.client.ui
Interface FiresFormEvents
-
- All Known Implementing Classes:
FormPanel
@Deprecated public interface FiresFormEventsDeprecated.This interface was specific toFormPanel; it is not generally useful and will be removed in a future version. UseFormPanel.addSubmitHandler(FormPanel.SubmitHandler)andFormPanel.addSubmitCompleteHandler(FormPanel.SubmitCompleteHandler)insteadA widget that implements this interface fires the events defined by theFormHandlerinterface.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description voidaddFormHandler(FormHandler handler)voidremoveFormHandler(FormHandler handler)Deprecated.Use theHandlerRegistration.removeHandler()method on the object returned by an add*Handler method instead
-
-
-
Method Detail
-
addFormHandler
@Deprecated void addFormHandler(FormHandler handler)
Deprecated.Adds a handler interface to receive click events.- Parameters:
handler- the handler interface to add
-
removeFormHandler
@Deprecated void removeFormHandler(FormHandler handler)
Deprecated.Use theHandlerRegistration.removeHandler()method on the object returned by an add*Handler method insteadRemoves a previously added handler interface.- Parameters:
handler- the handler interface to remove
-
-