Package net.sf.minuteProject.loader.init

Examples of net.sf.minuteProject.loader.init.InitHolder


      System.exit(1);
    }
    Date startDate = new Date();
      logger.info("start time = "+new Date());
      Init loader = new Init(args[0]);
    InitHolder Initholder = loader.load();
    Date endDate = new Date();
    logger.info("time taken : "+(endDate.getTime()-startDate.getTime())/1000+ "s.");
  }
View Full Code Here


  public InitHolder load() throws Exception{
    return load(getConfig(), getDigesterRule());
  }
 
  public InitHolder load (String configuration, String rules) throws Exception{
    InitHolder initholder = new InitHolder();
    loadConfiguration(initholder, getConfigurationInputStream(configuration), rules);
        return initholder;   
  }
View Full Code Here

TOP

Related Classes of net.sf.minuteProject.loader.init.InitHolder

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.