com.agimatec.commons.config.Config Maven / Gradle / Ivy
package com.agimatec.commons.config;
import java.util.Map;
/**
* Description: the root object of a Config file. This class is basically the same as a MapNode.
*
* @author Roman Stumm
*/
public class Config extends MapNode {
public Config() {
}
/**
* create an instance on the given map.
*
* @param aMap
*/
public Config(Map aMap) {
super(aMap);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy