示例#1
0
 public RobotSelectionPanel getRobotSelectionPanel() {
   if (robotSelectionPanel == null) {
     robotSelectionPanel =
         net.sf.robocode.core.Container.createComponent(RobotSelectionPanel.class);
     robotSelectionPanel.setup(
         MIN_ROBOTS,
         MAX_ROBOTS,
         false,
         "Select the robot you would like to extract to the robots directory.  Robots not shown do not include source.",
         true,
         true,
         true,
         false,
         true,
         true,
         null);
   }
   return robotSelectionPanel;
 }