Home | History | Annotate | Download | only in maven

Lines Matching refs:rule

21 import org.jacoco.report.check.Rule;
24 * Wrapper for {@link Rule} objects to allow Maven style includes/excludes lists
29 final Rule rule;
35 rule = new Rule();
40 * element type this rule applies to
44 rule.setElement(ElementType.valueOf(element));
52 rule.setIncludes(StringUtils.join(includes.iterator(), ":"));
61 rule.setExcludes(StringUtils.join(excludes.iterator(), ":"));
66 * list of {@link Limit}s configured for this rule
69 rule.setLimits(limits);