private void parseIntAttribute(Element element, String attributeName, ObjectDescriptor descriptor, String fieldName, Parse parse) {
if (element.hasAttribute(attributeName)) {
String intText = element.getAttribute(attributeName);
try {
int intValue = Integer.parseInt(intText);
IntegerDescriptor intValueDescriptor = new IntegerDescriptor();
intValueDescriptor.setValue(intValue);
FieldOperation intValueInjection = new FieldOperation();
intValueInjection.setFieldName(fieldName);
intValueInjection.setDescriptor(intValueDescriptor);
descriptor.addOperation(intValueInjection);
} catch (NumberFormatException e) {