| |
|
| java.lang.Object java.util.EventObject com.google.gwt.user.client.ui.FormSubmitEvent
FormSubmitEvent | public class FormSubmitEvent extends EventObject (Code) | | Event object containing information about form submission events.
|
Constructor Summary | |
public | FormSubmitEvent(Object source) Creates a new event with information about the source. |
Method Summary | |
public boolean | isCancelled() Gets whether this form submit will be cancelled. | public void | setCancelled(boolean cancel) Sets whether the form submit will be cancelled. |
FormSubmitEvent | public FormSubmitEvent(Object source)(Code) | | Creates a new event with information about the source.
Parameters: source - the object sending the event |
isCancelled | public boolean isCancelled()(Code) | | Gets whether this form submit will be cancelled.
true if the form submit will be cancelled |
setCancelled | public void setCancelled(boolean cancel)(Code) | | Sets whether the form submit will be cancelled.
Parameters: cancel - true to cancel the submit |
|
|
|