AntFig.java :  » Development » jfig » org » igfay » util » Java Open Source

Java Open Source » Development » jfig 
jfig » org » igfay » util » AntFig.java
package org.igfay.util;
import org.apache.log4j.Logger;
import org.apache.tools.ant.Main;
import org.igfay.jfig.JFig;

/**
 * @author conrad4
 *
 * This class brings the power and flexibility of JFig to Ant.
 * It takes advantage of the JFig functionality to automatically load selected values as properties.
 * You can put your Ant properties in your config file, then use AntFig to process configuration and call Ant.
 * 
 * This gives you the advantage of storing all your configuration in one central location in 
 * addition to the additional JFig functionality.
 */
public class AntFig {
  private static Logger logger = Logger.getLogger(AntFig.class);

  public static void main(String[] args) {
    JFig.getInstance();
    Main.main(args);
  }

}
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.