private final List<MetricTarget> targets;
protected DescriptorImpl() {
super(RcovPublisher.class);
targets = new ArrayList<MetricTarget>(){{
add(new MetricTarget(Targets.TOTAL_COVERAGE, 80, null, null));
add(new MetricTarget(Targets.CODE_COVERAGE, 80, null, null));
}};
}