Package com.jigen.ant

Examples of com.jigen.ant.Product


    return antJigen;
  }

  private Product importProduct(com.jigen.xsd.Product product)
  {
    Product antProduct = new Product();
   
    antProduct.setName        (product.getName());
    antProduct.setUnixname    (product.getUnixname());
    antProduct.setVersion     (product.getVersion());
    antProduct.setManufacturer(product.getManufacturer());
    antProduct.setLanguageCode(product.getLanguagecode().intValue());
   
    if (product.isSetLicense())
      antProduct.setLicense (getFile(product.getLicense()));
   
    return antProduct;
  }
View Full Code Here


 
  public WixGen(Jigen jigen) throws IOException
  {
    this.tempFile.deleteOnExit();
   
    Product jigenProduct = jigen.getProduct();
   
    this.productName            = jigenProduct.getName();
    this.shortProductName       = jigenProduct.getUnixName();
    this.productVersion         = jigenProduct.getVersion();
    this.productManufacturer    = jigenProduct.getManufacturer();
    this.productLanguageCode    = jigenProduct.getLanguageCode();
   
    this.addToPath              = jigen.getEnvironment().getAddToPath();
   
    for (Resource resource : jigen.getResources())
    {
View Full Code Here

TOP

Related Classes of com.jigen.ant.Product

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.