}
// Storing and converting the document
xstorable.storeAsURL( stringConvertedFile, propertyvalue );
XCloseable xcloseable = (XCloseable)UnoRuntime.queryInterface( XCloseable.class,xstorable );
// Closing the converted document
if ( xcloseable != null )
xcloseable.close(false);
else {
// If Xcloseable is not supported (older versions,
// use dispose() for closing the document
XComponent xComponent = ( XComponent ) UnoRuntime.queryInterface(
XComponent.class, xstorable );