Hi,
w
The below syntax for calling a superclass constructor is
super(); // Showing RED
or:
super(parameter list);// Showing RED
Ex:
public class customException extends FieldException {
private static final long serialVersionUID = 1L;
public static final Color MANDATORY = new Color(255, 231, 231); //Showing
RED
public customException (List<JComponent> notSetComponents) {
super(MessageKey.FIELD_PAST_WEEK_ERROR, notSetComponents);// Showing RED
}
protected Color getMarkColor() {
return MANDATORY;
}
}
Super constructor is not covered.
Could you help me on this.
--
You received this message because you are subscribed to the Google Groups
"JaCoCo and EclEmma Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/jacoco/a6481ad4-f885-459e-a35e-31792fd7130d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.