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

com.formkiq.server.service.dto.FormJSONSection Maven / Gradle / Ivy

The newest version!
package com.formkiq.server.service.dto;

import java.util.List;

/**
 * Class FormJson Section.
 *
 */
public class FormJSONSection {

    /** Title of section. */
    private String title;

    /** List of Fields. */
    private List fields;

    /**
     * default constructor.
     */
    public FormJSONSection() {
    }

    /**
     * @return {@link String}
     */
    public String getTitle() {
        return this.title;
    }

    /**
     * @param text String
     */
    public void setTitle(final String text) {
        this.title = text;
    }

    /**
     * @return List<FormJSONField>
     */
    public List getFields() {
        return this.fields;
    }

    /**
     * @param list List<FormJSONField>
     */
    public void setFields(final List list) {
        this.fields = list;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy