return formatInfos;
}
/* @param txt the input text
*/
public Object[] parseDateInput(String txt) {
final ZssContext ctx = ZssContext.getCurrent();
final int twoDigitYearUpperBound = ctx.getTwoDigitYearUpperBound();
final Locale locale = ctx.getLocale();
final FormatInfo[] formatInfos = getFormatInfos(locale);
for(int j = 0; j < formatInfos.length; ++j) {
final FormatInfo info = formatInfos[j];
Matcher m = info.getMaskPattern().matcher(txt);
if (m.matches()) {