throw new StepFailedException("No checkbox field named '" + getName() + "' found.");
}
boolean regex = ConversionUtil.convertToBoolean(getRegex(), false);
final IStringVerifier verifier = getVerifier(regex);
for (final Iterator iter = fields.iterator(); iter.hasNext();) {
final PDFField field = (PDFField) iter.next();
if (!verifier.verifyStrings(getValue(), field.getValue()))
throw new StepFailedException("Wrong checkbox field value", getValue(), field.getValue());
}
}
}