Package de.odysseus.calyxo.forms.misc

Examples of de.odysseus.calyxo.forms.misc.FormDataBean


   * Uses the specified object as form data bean.
   */
  protected FlushableDynaActionForm(Object bean) {
    super();
   
    this.data = new FormDataBean(bean);
  }
View Full Code Here


   * Uses the specified object as form data bean.
   */
  protected FlushableActionForm(Object bean) {
    super();
   
    this.data = new FormDataBean(bean);
  }
View Full Code Here

    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;
    }
  }
View Full Code Here

TOP

Related Classes of de.odysseus.calyxo.forms.misc.FormDataBean

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.