private void configureBrowser()
{
if( browser != null )
{
Configurable contentSettings = browser.getConfigurable();
if( SoapUI.isJXBrowserPluginsDisabled() )
{
contentSettings.disableFeature( Feature.PLUGINS );
}
else
{
contentSettings.enableFeature( Feature.PLUGINS );
}
}
}