/*
  * Constructor.
  */
 public RadioControlWSClient() {
   this.setBounds(0, 0, FRAME_WIDTH, FRAME_HEIGHT);
   this.addKeyListener(this);
   this.setVisible(true);
   command = COMMAND_NONE;
   direction = DIRECTION_FORWARDS;
   service = new NXTCommand();
   proxy = service.getNXTCommandPort();
 }