Package edu.pku.sei.metric.analyzer.math

Examples of edu.pku.sei.metric.analyzer.math.MathOperator


      public void postVisit(AbstractMetricElement metricElement) {
        for (int i = 0; i < metrics.size(); i++) {
          MetricValueDescriptor descriptor = metrics.get(i);
          for (int j = 0; j < mathOperators.size(); j++) {
            MathOperator mathOperator = mathOperators.get(j);
            mathOperator.operate(metricElement, descriptor);
          }
        }
      }
    };
    source.accept(visitor);
View Full Code Here


            .getConfigurationElements();
        for (int j = 0; j < operatorExtentions.length; j++) {
          IConfigurationElement operatorExtention = operatorExtentions[j];
          String kind = operatorExtention.getName();
          if (kind.equals("mathOperator")) {
            MathOperator operator = (MathOperator) operatorExtention
                .createExecutableExtension("operatorClass");
            operators.add(operator);
          }
        }
      }
View Full Code Here

TOP

Related Classes of edu.pku.sei.metric.analyzer.math.MathOperator

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.