* @see org.springmodules.validation.bean.conf.loader.xml.ValidationRuleElementHandlerRegistry#findPropertyHandler(org.w3c.dom.Element, Class, java.beans.PropertyDescriptor)
*/
public PropertyValidationElementHandler findPropertyHandler(Element element, Class clazz, PropertyDescriptor descriptor) {
for (Iterator iter = propertyHandlers.iterator(); iter.hasNext();) {
PropertyValidationElementHandler handler = (PropertyValidationElementHandler) iter.next();
if (handler.supports(element, clazz, descriptor)) {
return handler;
}
}
return null;
}