Package com.jigen.ant

Examples of com.jigen.ant.Jigen


    this.jigenFile = jigenFile;
  }
 
  public Jigen importJigen(JigenDocument document)
  {
    Jigen antJigen = new Jigen();
   
    antJigen.setWixHome(wixHome);
   
    com.jigen.xsd.JigenDocument.Jigen jigen = document.getJigen();
   
    antJigen.addProduct    (importProduct    (jigen.getProduct()));
    antJigen.addEnvironment(importEnvironment(jigen.getEnvironment()));
   
    for (com.jigen.xsd.Resource resource : jigen.getResourceArray())
      antJigen.addResource(importResource(resource));
   
    for (com.jigen.xsd.Runnable resource : jigen.getRunnableArray())
      antJigen.addRunnable(importRunnable(resource));
   
    for (com.jigen.xsd.Installer installer : jigen.getInstallerArray())
      antJigen.addInstaller(importInstaller(installer));
   
    return antJigen;
  }
View Full Code Here

TOP

Related Classes of com.jigen.ant.Jigen

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.