Package com.pawelmaslyk.gerritintegration4sonar.sonar

Examples of com.pawelmaslyk.gerritintegration4sonar.sonar.SonarAnalysisStatus


   * @param dashboardUrl
   *            The Sonar dashboard URL to include in the result message
   * @return the sonar analysis result
   */
  public SonarAnalysisResult getResult(SensorContext context, String dashboardUrl) {
    SonarAnalysisStatus status = SonarAnalysisStatus.NO_PROBLEMS;

    StringBuilder messageBuilder = new StringBuilder("Sonar analysis (").append(dashboardUrl).append("):\n");

    List<Measure> errors = getErrors(context);
    List<Measure> warnings = getWarnings(context);
View Full Code Here

TOP

Related Classes of com.pawelmaslyk.gerritintegration4sonar.sonar.SonarAnalysisStatus

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.