Examples of FlogMethodResults


Examples of hudson.plugins.rubyMetrics.flog.model.FlogMethodResults

    private void addFlogResults(String filePath, FlogFileResults flogResults, String line) {
        Matcher matcher = methodRegex.matcher(line);
        if (matcher.matches()) {
            String methodName = prettifyMethodPath(filePath, matcher.group("method"));
            FlogMethodResults methodResults = new FlogMethodResults(methodName, matcher.group("score"));
            flogResults.addMethodResult(methodResults);
        } else {
            matcher = operatorRegex.matcher(line);
            if (matcher.matches()) {
                flogResults.addOperatorResult(matcher.group("operator"), matcher.group("score"));
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.