예제 #1
0
파일: Sound.java 프로젝트: lego-line/lejos
 /**
  * Stops a sound file that has been playing/repeating.
  *
  * @return Error code.
  */
 public static int stopSoundPlayback() {
   try {
     return nxtCommand.stopSoundPlayback();
   } catch (IOException ioe) {
     System.out.println(ioe.getMessage());
     return -1;
   }
 }