* @author Andreas Br�ker
* @date 13.06.2006
*/
public IScriptProvider getScriptProvider() throws NOAException {
try {
XScriptProviderSupplier scriptProviderSupplier = (XScriptProviderSupplier) UnoRuntime
.queryInterface(XScriptProviderSupplier.class, document
.getXComponent());
return new ScriptProvider(scriptProviderSupplier
.getScriptProvider());
} catch (Throwable throwable) {
throw new NOAException(throwable);
}
}