com.dynamide.util
Class AntRunner

java.lang.Object
  extended by com.dynamide.util.AntRunner

public class AntRunner
extends java.lang.Object

Run any ant task from Java. Any java class can call this utility class and add specific Task initialization. The steps are:

Example:
        AntRunner run = new AntRunner() ;
        Task task = run.setupTask("cvs") ;
        Cvs cvs = (Cvs)task;
        cvs.setCommand("update");
        cvs.setNoexec(true);
        run.runTask() ;
   


Constructor Summary
AntRunner()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

AntRunner

public AntRunner()


Copyright © 2001-2013 DYNAMIDE.COM. All Rights Reserved.