}
//runnable.run( spm[0] );
if ( runnable instanceof StudioBulkRunnableWithProgress )
{
StudioBulkRunnableWithProgress bulkRunnable = ( StudioBulkRunnableWithProgress ) runnable;
ConnectionEventRegistry.suspendEventFireingInCurrentThread();
try
{
bulkRunnable.run( spm[0] );
}
finally
{
ConnectionEventRegistry.resumeEventFireingInCurrentThread();
}
bulkRunnable.runNotification();
}
else
{
runnable.run( spm[0] );
}