All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.atlassian.maven.plugin.clover.MethodWithMetricsContext Maven / Gradle / Ivy

package com.atlassian.maven.plugin.clover;

import com.atlassian.clover.cfg.instr.MethodContextDef;

/**
 * Complex configuration objects need to be in the same package as the MOJO that defines them.
 */
public class MethodWithMetricsContext extends MethodContextDef {

    @SuppressWarnings("unsued") // called by Maven when parsing MOJO configuration
    public MethodWithMetricsContext() {
        super();
    }

    public MethodWithMetricsContext(String name, String regexp, int maxComplexity, int maxStatements, int maxAggregatedComplexity, int maxAggregatedStatements) {
        super(name, regexp, maxComplexity, maxStatements, maxAggregatedComplexity, maxAggregatedStatements);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy