Iterator matchConfigs = config.getMatchConfigs();
while (matchConfigs.hasNext()) {
MatchConfig matchConfig = (MatchConfig)matchConfigs.next();
validators.add(factory.getValidator(matchConfig, locale));
}
ConvertConfig convertConfig = config.getConvertConfig();
if (convertConfig != null) {
Validator validator = factory.getValidator(convertConfig, locale);
validators.add(validator);
converter = (Converter)validator.getEngine();
}