/* ------------------------------------------------------------------ */
/** simulates pressing a toolbox button with the given URL
*/
private void executeSlot( String slotURL ) throws java.lang.Exception
{
XDispatch xDispatch = m_document.getCurrentView().getDispatcher( slotURL );
URL[] url = new URL[] { new URL() };
url[0].Complete = slotURL;
XURLTransformer xTransformer = (XURLTransformer)UnoRuntime.queryInterface(
XURLTransformer.class, m_orb.createInstance( "com.sun.star.util.URLTransformer" ) );
xTransformer.parseStrict( url );
PropertyValue[] aArgs = new PropertyValue[0];
xDispatch.dispatch( url[0], aArgs );
}