示例#1
0
 /**
  * Returns the total metric value with respect to a given method.
  *
  * @param mmethod the method to be examined
  * @return the value of this metric
  * @throws UnsupportedMetricsException if this metric is not supported, that is the value is
  *     invalid
  */
 public double getTotalValue(MethodMetrics mmethod) throws UnsupportedMetricsException {
   ClassMetrics mclass = mmethod.getClassMetrics();
   return mclass.getMetricValueWithException(MetricSort.TOTAL_LINE_OF_CODE);
 }
示例#2
0
 /**
  * Returns the metric value with respect to a given method.
  *
  * @param mmethod the class to be examined
  * @return the value of this metric
  * @throws UnsupportedMetricsException if this metric is not supported, that is the value is
  *     invalid
  */
 public double getValue(MethodMetrics mmethod) throws UnsupportedMetricsException {
   return mmethod.getMetricValueWithException(MetricSort.LINES_OF_CODE);
 }