Package de.odysseus.calyxo.forms.misc

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


   * Uses map-based form data.
   */
  public FlushableDynaActionForm() {
    super();
   
    this.data = new FormDataMap(new HashMap());
  }
View Full Code Here


   * Uses map-based form data.
   */
  public FlushableActionForm() {
    super();
   
    this.data = new FormDataMap(new HashMap());
  }
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

  /**
   * Default constructor.
   * Causes the form data to be kept in a map.
   */
  public CalyxoActionForm() {
    this(new FormDataMap(new HashMap()));
  }
View Full Code Here

TOP

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

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.