Package net.sf.robocode.repository

Examples of net.sf.robocode.repository.RobotProperties


    String version = getPackagerOptionsPanel().getVersionField().getText();
    String author = getPackagerOptionsPanel().getAuthorField().getText();
    String desc = getPackagerOptionsPanel().getDescriptionArea().getText();
    List<IRobotSpecItem> robots = getRobotSelectionPanel().getSelectedRobots();

    RobotProperties props = new RobotProperties();
    props.setIncludeSource(includeSource);
    props.setIncludeData(includeData);
    props.setVersion(version);
    props.setAuthor(author);
    props.setDescription(desc);
    props.setWebPage(webPage);

    String outputText = repositoryManager.createPackage(jarFile, robots, props);

    ConsoleDialog dialog = new ConsoleDialog(windowManager.getRobocodeFrame(), "Packaging results", false);
    dialog.setText(outputText);
View Full Code Here

TOP

Related Classes of net.sf.robocode.repository.RobotProperties

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.