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

net.sf.xmlform.util.MapMessageParameters Maven / Gradle / Ivy

There is a newer version: 3.2.1
Show newest version
package net.sf.xmlform.util;

import java.util.HashMap;

/**
 * @author Liu Zhikun
 */

public class MapMessageParameters extends HashMap implements MessageParameters {
	
	public String getParameter(String key) {
		Object v=get(key);
		return v==null?null:v.toString();
	}
	protected String objectToString(Object v){
		return v==null?null:v.toString();
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy