StartupHelper.java :  » Development » jdec » net » sf » jdec » commonutil » Java Open Source

Java Open Source » Development » jdec 
jdec » net » sf » jdec » commonutil » StartupHelper.java
package net.sf.jdec.commonutil;

import net.sf.jdec.config.VariableConfigurationResolver;


/***
 * 
 * @author sbelur
 *
 */

/***
 * This class should be used to init all the basic tasks
 * for jdec to work properly. 
 * 
 * TODO: Move all launch tasks like config calls
 * validation calls over here.
 */
public class StartupHelper {

  
  public StartupHelper(){
    
  }
  
  public  void start(){
    
    new VariableConfigurationResolver("variables.xml").read();
  }
  
  
}

java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.