Package org.sonar.batch.util

Examples of org.sonar.batch.util.ProgressReport


  DefaultBlameOutput(SensorContext context, List<InputFile> filesToBlame) {
    this.context = context;
    this.allFilesToBlame.addAll(filesToBlame);
    count = 0;
    total = filesToBlame.size();
    progressReport = new ProgressReport("Report about progress of SCM blame", TimeUnit.SECONDS.toMillis(10));
    progressReport.start(total + " files to be analyzed");
  }
View Full Code Here

TOP

Related Classes of org.sonar.batch.util.ProgressReport

Copyright © 2018 www.massapicom. 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.