Examples of TeamProperties


Examples of net.sf.robocode.repository.TeamProperties

    String members = robotSelectionPanel.getSelectedRobotsAsString();
    String version = teamCreatorOptionsPanel.getVersionField().getText();
    String author = teamCreatorOptionsPanel.getAuthorField().getText();
    String desc = teamCreatorOptionsPanel.getDescriptionArea().getText();
   
    TeamProperties props = new TeamProperties();
    props.setMembers(members);
    props.setVersion(version);
    props.setAuthor(author);
    props.setDescription(desc);
    props.setWebPage(webPageUrl);

    repositoryManager.createTeam(file, props);
    return 0;
  }
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.