}
if ( f.getPropertyInfo().getCustomizations().find( ORM_NS, "version" ) != null )
{
final CPluginCustomization pc = f.getPropertyInfo().getCustomizations().find( ORM_NS, "version" );
final Version version = JAXB.unmarshal( new DOMSource( pc.element ), Version.class );
if ( version.getName() == null )
{
version.setName( f.getPropertyInfo().getName( false ) );
}
attributes.getVersion().add( version );
mapped = true;
if ( !pc.isAcknowledged() )
{
pc.markAsAcknowledged();
}
final Column defaultColumn =
this.applySchemaDefaults( f.getPropertyInfo().getSchemaComponent(), version.getColumn() );
version.setColumn( defaultColumn );
}
if ( f.getPropertyInfo().getCustomizations().find( ORM_NS, "many-to-one" ) != null )
{
final CPluginCustomization pc = f.getPropertyInfo().getCustomizations().find( ORM_NS, "many-to-one" );