super.validate(comp, value);
}
private WrongValueException outOfRangeValue(Component comp) {
final String errmsg = getErrorMessage(comp);
if (errmsg != null)
return new WrongValueException(comp, errmsg);
final String s =
_beg != null ? _end != null ?
dateToString(comp, _beg) + " ~ " + dateToString(comp, _end):
">= " + dateToString(comp, _beg):
"<= " + dateToString(comp, _end);
return new WrongValueException(comp, MZul.OUT_OF_RANGE, s);
}