//System.out.println("CollectionDescriptor.setPropertyValue2(" + value + ")" );
if( value instanceof Collection )
{
if( type != null )
// Check the type before adding
col.addAll( new UnmodifiableFilteredCollection( (Collection)value, new TypeFilter(request) ) );
else
col.addAll( (Collection)value);
}
else
{