Examples of UIThreshold


Examples of org.woped.metrics.metricsCalculation.UITypes.UIThreshold

    IMetricsConfiguration metricsConfig = ConfigurationManager.getMetricsConfiguration();
    String id = algorithmNameToID(metricsID);
    int thresholds = metricsConfig.getMetricThresholdCount(id);
    List<UIThreshold> thresholdList = new ArrayList<UIThreshold>();
    for(int i=0;i<thresholds;i++)
      thresholdList.add(new UIThreshold(metricsConfig.getMetricThresholdLowValue(id, i),
          metricsConfig.getMetricThresholdHighValue(id, i), metricsConfig.getMetricThresholdState(id, i)));
    return thresholdList;
  }
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.