Package com.jitcaforwin.trackinfoanalyzer.log

Examples of com.jitcaforwin.trackinfoanalyzer.log.AnalyzerLibraryLog.reportException()


    AnalyzerLibraryLog log = new AnalyzerLibraryLog();
    for (Track track : this.getPlaylist().getTracks()) {
      try {
        log.addLog(((FileOrCDTrack) track).analyzeTrackInfo());
      } catch (TrackAnalyzerRuntimeException e) {
        log.reportException(e);
      }
    }
    return log;
  }
}
View Full Code Here


        } else {
          log.addLog(new AnalysisNotPossibleBecauseOfTrackKindLogEntry((TrackInfo) track));
        }
       
      } catch (TrackAnalyzerRuntimeException e) {
        log.reportException(e);
      }
    }
    return log;
  }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.