Column c = propertyDescriptor.getAnnotation(Column.class);
this.addBasic(attributes, propertyDescriptor, c);
} else if (propertyDescriptor.isAnnotationPresent(Transient.class)) {
this.addTransient(attributes, propertyDescriptor);
} else {
attributes.addComment("Field " + propertyDescriptor.getName() + " not correctly mapped");
}
}
}
return document;