Examples of RobotProperties


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
Copyright © 2018 www.massapi.com. 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.