Package de.mhus.lib.config

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

Related Classes of de.mhus.lib.config.XmlConfigFile

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.