Examples of XmlConfigFile


Examples of de.mhus.lib.config.XmlConfigFile

  }

  @Override
  public IConfig getPersistence(String name) {
    synchronized (this) {
      XmlConfigFile config = cache.get(name);
      if (config == null) {
        try {
          config = new XmlConfigFile(new File(dir,"config_" + MFile.normalize(name) + ".xml"));
          cache.put(name,config);
        } catch (Throwable t) {
          log().w(dir,name,t);
        }
      }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.