Package net.sf.robocode.dotnet.repository.items

Examples of net.sf.robocode.dotnet.repository.items.DotNetRobotItem


    return item;
  }

  protected RobotItem createItem(URL itemURL, IRepositoryRoot root, IRepository repository) {
    File file = new File(itemURL.toString().replace(".properties", ".dll"));
    DotNetRobotItem item = new DotNetRobotItem(new DllRoot(repository, file), itemURL);

    item.setClassURL(itemURL);
    return item;
  }
View Full Code Here

TOP

Related Classes of net.sf.robocode.dotnet.repository.items.DotNetRobotItem

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.