}
if ( f.getPropertyInfo().getCustomizations().find( ORM_NS, "many-to-many" ) != null )
{
final CPluginCustomization pc = f.getPropertyInfo().getCustomizations().find( ORM_NS, "many-to-many" );
final ManyToMany m = JAXB.unmarshal( new DOMSource( pc.element ), ManyToMany.class );
if ( m.getName() == null )
{
m.setName( f.getPropertyInfo().getName( false ) );
}
attributes.getManyToMany().add( m );
this.generateCollectionSetter( f.parent().parent().getCodeModel(), f.parent(), f.getPropertyInfo() );