Package com.jigen.ant

Examples of com.jigen.ant.RunnableResource


    return antEnvironment;
  }

  private RunnableResource importRunnable(com.jigen.xsd.Runnable resource)
  {
    RunnableResource antResource = new RunnableResource();
   
    antResource.setName       (resource.getName());
    antResource.setType       (resource.getType().toString());
    antResource.addJava       (importJava(resource.getJava()));
   
    if (resource.isSetIcon())
      antResource.addIcon       (importIcon(resource.getIcon()));
   
    for (com.jigen.xsd.Shortcut shortcut : resource.getShortcutArray())
      antResource.addShortcut(importShortcut(shortcut));
   
    for (com.jigen.xsd.Associate associate : resource.getAssociateArray())
      antResource.addAssociate(importAssociate(associate));
   
    return antResource;
  }
View Full Code Here

TOP

Related Classes of com.jigen.ant.RunnableResource

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.