예제 #1
0
파일: Notify.java 프로젝트: fin-nick/fj
 private boolean testSoundFile(String source) {
   Notify notify = new Notify();
   notify.createPlayer(source);
   boolean ok = (null != notify.player);
   notify.closePlayer();
   return ok;
 }