Package ch.hortis.sonar.model

Examples of ch.hortis.sonar.model.MetricType


  }

  public void addMeasure(Double value, Date date, String metricName, int metricType) {
    CombinedHistoryPlot plot = plotsPerLegend.get(metricName);
    if (plot == null) {
      MetricType type = MetricType.values()[metricType];
      plot = new CombinedHistoryPlot(type, metricName, colors.pop());
      plotsPerLegend.put(metricName, plot);
      legends.add(metricName);
    }
    Double min = minsPerPlotLegend.get(metricName);
View Full Code Here

TOP

Related Classes of ch.hortis.sonar.model.MetricType

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.