Example #1
0
 /**
  * Changes the target type to SMR with diameter of 0.022225 meters.
  *
  * @return "Target type changed.\n"
  * @throws TrackerException thrown if not connected
  */
 String targetType() throws TrackerException {
   isConnected();
   trk.changeTargetType(new SMRTargetType(0.022225));
   return "Target type changed.\n";
 }