Package com.jigen.ant

Examples of com.jigen.ant.Resource


    return antJava;
  }

  private Resource importResource(com.jigen.xsd.Resource resource)
  {
    Resource antResource = new Resource();
   
    antResource.setSource     (getFile(resource.getSource()));
    antResource.setDestination(resource.getDestination());
   
    if (resource.isSetIcon())
      antResource.addIcon(importIcon(resource.getIcon()));
   
    for (com.jigen.xsd.Shortcut shortcut : resource.getShortcutArray())
      antResource.addShortcut(importShortcut(shortcut));
   
    return antResource;
  }
View Full Code Here

TOP

Related Classes of com.jigen.ant.Resource

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.