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

net.sf.xmlform.config.ConfigParseResult Maven / Gradle / Ivy

There is a newer version: 3.2.0
Show newest version
package net.sf.xmlform.config;

import java.util.Map;

/**
 * @author Liu Zhikun
 */

public class ConfigParseResult {
	private Map forms;
	private Map types;
	public Map getForms(){
		return forms;
	};
	public void setForms(Map forms) {
		this.forms = forms;
	}
	public void setTypes(Map types) {
		this.types = types;
	}
	public Map getTypes(){
		return types;
	};
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy