if ( sharedLibraryLoader == null )
if ( ! test_instantiateSharedLibraryLoader() )
return false;
System.err.println("- get factory of the Registry");
XSingleServiceFactory aRegFac =
(XSingleServiceFactory) UnoRuntime.queryInterface( XSingleServiceFactory.class,
sharedLibraryLoader.activate(NATIVE_REGISTRY_IMP_NAME, null, NATIVE_REGISTRY_LIB_NAME, null)
);
System.err.println("- instantiate the Registry");
simpleRegistry =
(XSimpleRegistry) UnoRuntime.queryInterface( XSimpleRegistry.class, aRegFac.createInstance() );
System.out.print("Test - ");
System.out.println(simpleRegistry == null? "failed" : "successfull");
System.out.println("*******************************************************************");
System.err.println();
return true;