private static final long serialVersionUID = 7560512657831865244L;
public final void componentEvent(Event event) {
if(event instanceof FormPropertiesEvent) {
FormPropertiesEvent propertyEvent = (FormPropertiesEvent) event;
if(FormPropertiesEvent.TYPE_SUBMIT.equals(propertyEvent.getType())) {
handleFormSubmit(propertyEvent);
} else {
handleFormCancel(propertyEvent);
}
}