1 16 package com.google.gwt.user.client.ui; 17 18 import java.util.EventObject ; 19 20 23 public class FormSubmitEvent extends EventObject { 24 25 private boolean cancel; 26 27 32 public FormSubmitEvent(Object source) { 33 super(source); 34 } 35 36 41 public boolean isCancelled() { 42 return cancel; 43 } 44 45 50 public void setCancelled(boolean cancel) { 51 this.cancel = cancel; 52 } 53 } 54 | Popular Tags |