String value = XmlUtil.attribute(propertyElement, "value");
if ( (name!=null)
&& (value!=null)
) {
StringDescriptor nameDescriptor = new StringDescriptor();
nameDescriptor.setValue(name);
keyDescriptors.add(nameDescriptor);
StringDescriptor valueDescriptor = new StringDescriptor();
valueDescriptor.setValue(value);
valueDescriptors.add(valueDescriptor);
} else {
parse.addProblem("property must have name and value attributes: "+XmlUtil.toString(propertyElement));
}
} else {