if (!classes.containsKey(objectClass)) {
Map<Property, Collection<CascadeType>> beanPropertiesFor = StrategyUtils.getBeanPropertiesFor(propertyProvider, objectClass, migrator);
// Finally, create a fake "classesCollection" property and add it to
// property
try {
beanPropertiesFor.put(new ClassCollectionProperty(objectClass), new LinkedList<CascadeType>());
beanPropertiesFor.put(new TypeProperty(objectClass), new LinkedList<CascadeType>());
} catch (Exception e) {
logger.log(Level.SEVERE, "what ? a class without a \"class\" field ? WTF", e);
}
classes .put(objectClass, beanPropertiesFor);