Examples of XUnoUrlResolver


Examples of com.sun.star.bridge.XUnoUrlResolver

    {
    XMultiServiceFactory xMultiServiceFactory = null;
    XMultiServiceFactory xLocalServiceManager =
      com.sun.star.comp.helper.Bootstrap.createSimpleServiceManager();

    XUnoUrlResolver aURLResolver = (XUnoUrlResolver)UnoRuntime.queryInterface(
      XUnoUrlResolver.class,
      xLocalServiceManager.createInstance( "com.sun.star.bridge.UnoUrlResolver" ) );

    xMultiServiceFactory = (XMultiServiceFactory)UnoRuntime.queryInterface(
      XMultiServiceFactory.class,
      aURLResolver.resolve( sConnection ) );
    if ( xMultiServiceFactory == null )
      throw new Exception( "couldn't not connect to:'" + sConnection + "'" );
    return xMultiServiceFactory;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.