propTypeAnnot = field.getAnnotation(PropertyType.class);
try {
if (xmlPropDesc != null) {
Iterator<PropertyDescription> it = xmlPropDesc
.iterator();
PropertyDescription tmp;
propDesc = null;
while (it.hasNext() && (propDesc == null)) {
tmp = it.next();
if (tmp.getPropertyName().equals(propName)) {
propDesc = tmp.getDescription();
}
}
} else {
propDesc = propExtDefAnnot.propertyDescription();