All Downloads are FREE. Search and download functionalities are using the official Maven repository.

edu.cornell.mannlib.vedit.beans.FormObject Maven / Gradle / Ivy

/* $This file is distributed under the terms of the license in LICENSE$ */

package edu.cornell.mannlib.vedit.beans;

import java.io.Serializable;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

public class FormObject implements Serializable {

    private HashMap values = new HashMap();
    private HashMap> optionLists = new HashMap>();
    private HashMap> checkboxLists = new HashMap>();
    private Map errorMap = new HashMap();
    private List dynamicFields = new ArrayList();

    public HashMap getValues(){
        return values;
    }

    public void setValues(HashMap values){
        this.values = values;
    }

    public String valueByName(String name){
        return values.get(name);
    }

    public HashMap> getOptionLists() {
        return optionLists;
    }

    public void setOptionLists(HashMap> optionLists) {
        this.optionLists = optionLists;
    }

    public List




© 2015 - 2024 Weber Informatics LLC | Privacy Policy