![JAR search and dependency download from the Maven repository](/logo.png)
com.formkiq.server.service.dto.FormJSONSection Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of greeting Show documentation
Show all versions of greeting Show documentation
Server-side integration for the FormKiQ ios application
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