public RobotDisposer(RobotPeer peer) { this.peer = peer; }
public RobotPeer createRobot(GraphicsDevice screen) throws AWTException { // TODO: Implement this. throw new UnsupportedOperationException("Not yet implemented."); }
public RobotPeer createRobot (GraphicsDevice screen) throws AWTException { return new GdkRobotPeer (screen); }
public RobotPeer createRobot (GraphicsDevice screen) throws AWTException { throw new UnsupportedOperationException(); }
public RobotPeer createRobot(GraphicsDevice screen) throws AWTException { throw new HeadlessException(); }
@Override public RobotPeer createRobot(GraphicsDevice arg0) throws AWTException { throw new UnsupportedOperationException("Not yet implemented."); //return null; }
/** * Creates a RobotPeer on a given GraphicsDevice. */ public abstract RobotPeer createRobot (GraphicsDevice screen) throws AWTException;
public RobotPeer createRobot(Robot robot, GraphicsDevice device);