Package imageManager.interfaces

Examples of imageManager.interfaces._XComponent


        xPropCont.log = log;
        assure("addProperty()", xPropCont._addProperty());
        assure("removeProperty()", xPropCont._removeProperty());

        // check the XComponent interface
        _XComponent xComponent = new _XComponent();
        xComponent.oObj = (XComponent)UnoRuntime.queryInterface(XComponent.class, xContent);
        xComponent.log = log;
        assure("addEventListener()", xComponent._addEventListener());
        assure("removeEventListener()", xComponent._removeEventListener());
//        assure("dispose()", xComponent._dispose());
    }
View Full Code Here


        xPropCont.log = log;
        assure("addProperty()", xPropCont._addProperty());
        assure("removeProperty()", xPropCont._removeProperty());

        // check the XComponent interface
        _XComponent xComponent = new _XComponent();
        xComponent.oObj = (XComponent)UnoRuntime.queryInterface(XComponent.class, xContent);
        xComponent.log = log;
        assure("addEventListener()", xComponent._addEventListener());
        assure("removeEventListener()", xComponent._removeEventListener());
//        assure("dispose()", xComponent._dispose());
    }
View Full Code Here

        xPropCont.log = log;
        assure("addProperty()", xPropCont._addProperty());
        assure("removeProperty()", xPropCont._removeProperty());

        // check the XComponent interface
        _XComponent xComponent = new _XComponent();
        xComponent.oObj = (XComponent)UnoRuntime.queryInterface(XComponent.class, xContent);
        xComponent.log = log;
        assure("addEventListener()", xComponent._addEventListener());
        assure("removeEventListener()", xComponent._removeEventListener());
//        assure("dispose()", xComponent._dispose());
    }
View Full Code Here

        xPropCont.log = log;
        assure("addProperty()", xPropCont._addProperty());
        assure("removeProperty()", xPropCont._removeProperty());

        // check the XComponent interface
        _XComponent xComponent = new _XComponent();
        xComponent.oObj = (XComponent)UnoRuntime.queryInterface(XComponent.class, xContent);
        xComponent.log = log;
        assure("addEventListener()", xComponent._addEventListener());
        assure("removeEventListener()", xComponent._removeEventListener());
//        assure("dispose()", xComponent._dispose());
    }
View Full Code Here

        assure(testObjectName + "::XUIConfigPersistence.reload", _xUIConfigPersistence._reload(), true);
        assure(testObjectName + "::XUIConfigPersistence.store", _xUIConfigPersistence._store(), true);
        assure(testObjectName + "::XUIConfigPersistence.storeToStorage", _xUIConfigPersistence._storeToStorage(), true);
       
        XComponent xComp = (XComponent)UnoRuntime.queryInterface(XComponent.class, xImageManager);
        _XComponent _xComp = new _XComponent(log, param, xComp);
        _xComp.before();
        assure(testObjectName + "::XComponent.addEventListener", _xComp._addEventListener(), true);
        assure(testObjectName + "::XComponent.removeEventListener", _xComp._removeEventListener(), true);
        assure(testObjectName + "::XComponent.dispose", _xComp._dispose(), true);
    }
View Full Code Here

        XInitialization xInit = (XInitialization)UnoRuntime.queryInterface(XInitialization.class, xImageManager);
        _XInitialization _xInit = new _XInitialization(log, param, xInit);
        assure(testObjectName + "::XInitialization.initialize", _xInit._initialize(), true);
       
        // xImageManager is already there, just write a test ;-)
        _XImageManager _xImage = new _XImageManager(log, param, xImageManager);
        assure(testObjectName + "::XImageManager.getAllImageNames", _xImage._getAllImageNames(), true);
        assure(testObjectName + "::XImageManager.getImages", _xImage._getImages(), true);
        assure(testObjectName + "::XImageManager.hasImage", _xImage._hasImage(), true);
        assure(testObjectName + "::XImageManager.insertImages", _xImage._insertImages(), true);
        assure(testObjectName + "::XImageManager.removeImages", _xImage._removeImages(), true);
        assure(testObjectName + "::XImageManager.replaceImages", _xImage._replaceImages(), true);
        assure(testObjectName + "::XImageManager.reset", _xImage._reset(), true);
       
        XTypeProvider xType = (XTypeProvider)UnoRuntime.queryInterface(XTypeProvider.class, xImageManager);
        _XTypeProvider _xType = new _XTypeProvider(log,param,xType);
        assure(testObjectName + "::XTypeProvider.getImplementationId", _xType._getImplementationId(), true);
        assure(testObjectName + "::XTypeProvider.getTypes", _xType._getTypes(), true);
View Full Code Here

        OXUIConfigurationListenerImpl configListener = new OXUIConfigurationListenerImpl(log, xManager, xMSF);
        param.put("XUIConfiguration.XUIConfigurationListenerImpl", configListener);
       
        XInitialization xInit = (XInitialization)UnoRuntime.queryInterface(XInitialization.class, xImageManager);
        _XInitialization _xInit = new _XInitialization(log, param, xInit);
        assure(testObjectName + "::XInitialization.initialize", _xInit._initialize(), true);
       
        // xImageManager is already there, just write a test ;-)
        _XImageManager _xImage = new _XImageManager(log, param, xImageManager);
        assure(testObjectName + "::XImageManager.getAllImageNames", _xImage._getAllImageNames(), true);
        assure(testObjectName + "::XImageManager.getImages", _xImage._getImages(), true);
View Full Code Here

        assure(testObjectName + "::XImageManager.removeImages", _xImage._removeImages(), true);
        assure(testObjectName + "::XImageManager.replaceImages", _xImage._replaceImages(), true);
        assure(testObjectName + "::XImageManager.reset", _xImage._reset(), true);
       
        XTypeProvider xType = (XTypeProvider)UnoRuntime.queryInterface(XTypeProvider.class, xImageManager);
        _XTypeProvider _xType = new _XTypeProvider(log,param,xType);
        assure(testObjectName + "::XTypeProvider.getImplementationId", _xType._getImplementationId(), true);
        assure(testObjectName + "::XTypeProvider.getTypes", _xType._getTypes(), true);
       
        XUIConfiguration xUIConfig = (XUIConfiguration)UnoRuntime.queryInterface(XUIConfiguration.class, xImageManager);
        _XUIConfiguration _xUIConfig = new _XUIConfiguration(log,  param, xUIConfig);
        _xUIConfig.before();
        assure(testObjectName + "::XUIConfig.addConfigurationListener", _xUIConfig._addConfigurationListener(), true);
View Full Code Here

        _XTypeProvider _xType = new _XTypeProvider(log,param,xType);
        assure(testObjectName + "::XTypeProvider.getImplementationId", _xType._getImplementationId(), true);
        assure(testObjectName + "::XTypeProvider.getTypes", _xType._getTypes(), true);
       
        XUIConfiguration xUIConfig = (XUIConfiguration)UnoRuntime.queryInterface(XUIConfiguration.class, xImageManager);
        _XUIConfiguration _xUIConfig = new _XUIConfiguration(log,  param, xUIConfig);
        _xUIConfig.before();
        assure(testObjectName + "::XUIConfig.addConfigurationListener", _xUIConfig._addConfigurationListener(), true);
        assure(testObjectName + "::XUIConfig.removeConfigurationListener", _xUIConfig._removeConfigurationListener(), true);
       
        XUIConfigurationPersistence xUIConfigPersistence = (XUIConfigurationPersistence)UnoRuntime.queryInterface(XUIConfiguration.class, xImageManager);
        _XUIConfigurationPersistence _xUIConfigPersistence = new _XUIConfigurationPersistence(log, param, xUIConfigPersistence);
        _xUIConfigPersistence.before();
        assure(testObjectName + "::XUIConfigPersistence.isModified", _xUIConfigPersistence._isModified(), true);
View Full Code Here

        _xUIConfig.before();
        assure(testObjectName + "::XUIConfig.addConfigurationListener", _xUIConfig._addConfigurationListener(), true);
        assure(testObjectName + "::XUIConfig.removeConfigurationListener", _xUIConfig._removeConfigurationListener(), true);
       
        XUIConfigurationPersistence xUIConfigPersistence = (XUIConfigurationPersistence)UnoRuntime.queryInterface(XUIConfiguration.class, xImageManager);
        _XUIConfigurationPersistence _xUIConfigPersistence = new _XUIConfigurationPersistence(log, param, xUIConfigPersistence);
        _xUIConfigPersistence.before();
        assure(testObjectName + "::XUIConfigPersistence.isModified", _xUIConfigPersistence._isModified(), true);
        assure(testObjectName + "::XUIConfigPersistence.isReadOnly", _xUIConfigPersistence._isReadOnly(), true);
        assure(testObjectName + "::XUIConfigPersistence.reload", _xUIConfigPersistence._reload(), true);
        assure(testObjectName + "::XUIConfigPersistence.store", _xUIConfigPersistence._store(), true);
        assure(testObjectName + "::XUIConfigPersistence.storeToStorage", _xUIConfigPersistence._storeToStorage(), true);
       
        XComponent xComp = (XComponent)UnoRuntime.queryInterface(XComponent.class, xImageManager);
        _XComponent _xComp = new _XComponent(log, param, xComp);
        _xComp.before();
        assure(testObjectName + "::XComponent.addEventListener", _xComp._addEventListener(), true);
View Full Code Here

TOP

Related Classes of imageManager.interfaces._XComponent

Copyright © 2018 www.massapicom. 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.