{
boolean mapped = false;
if ( f.getPropertyInfo().getCustomizations().find( ORM_NS, "basic" ) != null )
{
final CPluginCustomization pc = f.getPropertyInfo().getCustomizations().find( ORM_NS, "basic" );
final Basic basic = JAXB.unmarshal( new DOMSource( pc.element ), Basic.class );
if ( basic.getName() == null )
{
basic.setName( f.getPropertyInfo().getName( false ) );
}
attributes.getBasic().add( basic );
mapped = true;
if ( !pc.isAcknowledged() )
{
pc.markAsAcknowledged();
}
}
if ( f.getPropertyInfo().getCustomizations().find( ORM_NS, "transient" ) != null )
{
final CPluginCustomization pc = f.getPropertyInfo().getCustomizations().find( ORM_NS, "transient" );
final Transient t = JAXB.unmarshal( new DOMSource( pc.element ), Transient.class );
if ( t.getName() == null )
{
t.setName( f.getPropertyInfo().getName( false ) );
}
attributes.getTransient().add( t );
mapped = true;
if ( !pc.isAcknowledged() )
{
pc.markAsAcknowledged();
}
}
if ( !mapped )
{