diff options
author | Oliver Bolte <obo@openoffice.org> | 2004-03-17 10:53:34 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2004-03-17 10:53:34 +0000 |
commit | 7fb15a550dbfd8cf1183c939bdc1de7ab73b4f32 (patch) | |
tree | 8f85fb482715bfe88129123e40d5ef113033e2df /udkapi | |
parent | dff3c2dd584b48023fc80bc986d03c882646ba50 (diff) |
INTEGRATION: CWS sdk12bugfix (1.8.44); FILE MERGED
2004/02/27 09:10:10 jsc 1.8.44.1: #113058# remove Uik where possible
Diffstat (limited to 'udkapi')
-rw-r--r-- | udkapi/com/sun/star/uno/XAggregation.idl | 52 |
1 files changed, 2 insertions, 50 deletions
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 <com/sun/star/uno/XInterface.idl> #endif -#ifndef __com_sun_star_uno_Uik_idl__ -#include <com/sun/star/uno/Uik.idl> -#endif - - //============================================================================= module com { module sun { module star { module uno { @@ -133,30 +128,6 @@ interface XAggregation: com::sun::star::uno::XInterface <member>XInterface::queryInterface()</member> itself. - @example:Java - - <listing> - - 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; - } - - </listing> - @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 <member>XInterface::queryInterface()</member>. - @example:Java - - <listing> - - 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; - } - - </listing> - @see XAggregation::setDelegator */ any queryAggregation( [in] type aType ); -// boolean queryAggregation( [in] com::sun::star::uno::Uik aUik, -// [out] any ifc ); }; |