Package com.cybozu.vmbkp.config

Examples of com.cybozu.vmbkp.config.ConfigLikeGit


    {
        assert filePath != null;
        lockM_ = null;
       
        configFilePath_ = filePath;
        cfg_ = new ConfigLikeGit();
        if (configFilePath_ != null) {
            read(configFilePath_);
        }
    }
View Full Code Here


       
        configFilePath_ = null;
        if (cfg != null) {
            cfg_ = cfg;
        } else {
            cfg_ = new ConfigLikeGit();
        }
    }
View Full Code Here

     * This creates empty config data without config file name.
     */
    public ConfigWrapper()
    {
        configFilePath_ = null;
        cfg_ = new ConfigLikeGit();
        lockM_ = null;
    }
View Full Code Here

TOP

Related Classes of com.cybozu.vmbkp.config.ConfigLikeGit

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.