Exemplo n.º 1
0
 private boolean testSoundFile(String source) {
   Notify notify = new Notify();
   notify.createPlayer(source);
   boolean ok = (null != notify.player);
   notify.closePlayer();
   return ok;
 }