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

com.agimatec.commons.config.Config Maven / Gradle / Ivy

There is a newer version: 2.5.27
Show newest version
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