{
if ( m_xControlContainer != null )
{
try
{
XAnimation xThrobber = (XAnimation)UnoRuntime.queryInterface( XAnimation.class, m_xControlContainer.getControl( "WikiThrobber" ) );
if ( xThrobber != null )
{
if ( bActive )
xThrobber.startAnimation();
else
xThrobber.stopAnimation();
}
}
catch( Exception e )
{
e.printStackTrace();