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

com.github.ddm4j.api.document.common.model.FieldInfo Maven / Gradle / Ivy

package com.github.ddm4j.api.document.common.model;

import java.util.List;

public class FieldInfo {

	private String name;
	private String type;
	private String describe;
	private List children;

	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}

	public String getType() {
		return type;
	}

	public void setType(String type) {
		this.type = type;
	}

	public String getDescribe() {
		return describe;
	}

	public void setDescribe(String describe) {
		this.describe = describe;
	}

	public List getChildren() {
		return children;
	}

	public void setChildren(List children) {
		this.children = children;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy