56575859606162
* Uses map-based form data. */ public FlushableDynaActionForm() { super(); this.data = new FormDataMap(new HashMap()); }
57585960616263
* Uses map-based form data. */ public FlushableActionForm() { super(); this.data = new FormDataMap(new HashMap()); }
195196197198199200201202203204205
} } if (data instanceof FormData) { return (FormData)data; } else if (data instanceof Map) { return new FormDataMap((Map)data); } else if (data != null) { return new FormDataBean(data); } else { return null; }
52535455565758
/** * Default constructor. * Causes the form data to be kept in a map. */ public CalyxoActionForm() { this(new FormDataMap(new HashMap())); }