From 7fb15a550dbfd8cf1183c939bdc1de7ab73b4f32 Mon Sep 17 00:00:00 2001 From: Oliver Bolte Date: Wed, 17 Mar 2004 10:53:34 +0000 Subject: INTEGRATION: CWS sdk12bugfix (1.8.44); FILE MERGED 2004/02/27 09:10:10 jsc 1.8.44.1: #113058# remove Uik where possible --- udkapi/com/sun/star/uno/XAggregation.idl | 52 ++------------------------------ 1 file changed, 2 insertions(+), 50 deletions(-) (limited to 'udkapi') diff --git a/udkapi/com/sun/star/uno/XAggregation.idl b/udkapi/com/sun/star/uno/XAggregation.idl index e7087955dcbc..066d2aa23e70 100644 --- a/udkapi/com/sun/star/uno/XAggregation.idl +++ b/udkapi/com/sun/star/uno/XAggregation.idl @@ -2,9 +2,9 @@ * * $RCSfile: XAggregation.idl,v $ * - * $Revision: 1.8 $ + * $Revision: 1.9 $ * - * last change: $Author: obo $ $Date: 2003-09-04 10:58:39 $ + * last change: $Author: obo $ $Date: 2004-03-17 11:53:34 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -65,11 +65,6 @@ #include #endif -#ifndef __com_sun_star_uno_Uik_idl__ -#include -#endif - - //============================================================================= module com { module sun { module star { module uno { @@ -133,30 +128,6 @@ interface XAggregation: com::sun::star::uno::XInterface XInterface::queryInterface() itself. - @example:Java - - - - void setDelegator( com.sun.star.uno.XInterface aDelegator ) - { - pDelegator =aDelegator; - } - - - com.sun.star.uno.XInterface queryInterface( com.sun.star.uno.Uik aUik ) - { - com.sun.star.uno.XInterface pRet = null; - - // pDelegator may be already set - if( pDelegator == null ) - pRet = queryAggregation( aIFace ); - else - pRet = pDelegator->queryInterface( aIFace ); - return pRet; - } - - - @see XAggregation::queryAggregation */ void setDelegator( [in] com::sun::star::uno::XInterface pDelegator ); @@ -174,28 +145,9 @@ interface XAggregation: com::sun::star::uno::XInterface on getting its own interface when it calls the method XInterface::queryInterface(). - @example:Java - - - - Class queryAggregation( Class aIFace ) - { - // The Uno-System provides information about their own interfaces - Class pRet = Uno.getInterface( this, aIFace ); - - if( pRet == null ) - // not an own interface, thus forward to the aggregated object - pRet = aMyAggObj->queryAggregation( aIface ); - return pRet; - } - - - @see XAggregation::setDelegator */ any queryAggregation( [in] type aType ); -// boolean queryAggregation( [in] com::sun::star::uno::Uik aUik, -// [out] any ifc ); }; -- cgit