86a009327d
2007/06/26 15:25:14 sb 1.2.14.2: #i75466# Retargeted from OOo 2.3 to 2.4. 2007/04/13 15:29:01 sb 1.2.14.1: #i75466# New regcomp -wop=<prefix> feature.
82 lines
3.3 KiB
Text
82 lines
3.3 KiB
Text
/*************************************************************************
|
|
*
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
|
*
|
|
* $RCSfile: XImplementationRegistration2.idl,v $
|
|
*
|
|
* $Revision: 1.3 $
|
|
*
|
|
* last change: $Author: vg $ $Date: 2007-10-15 12:25:45 $
|
|
*
|
|
* The Contents of this file are made available subject to
|
|
* the terms of GNU Lesser General Public License Version 2.1.
|
|
*
|
|
*
|
|
* GNU Lesser General Public License Version 2.1
|
|
* =============================================
|
|
* Copyright 2005 by Sun Microsystems, Inc.
|
|
* 901 San Antonio Road, Palo Alto, CA 94303, USA
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License version 2.1, as published by the Free Software Foundation.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
* MA 02111-1307 USA
|
|
*
|
|
************************************************************************/
|
|
#ifndef __com_sun_star_registry_XImplementationRegistration2_idl__
|
|
#define __com_sun_star_registry_XImplementationRegistration2_idl__
|
|
|
|
#ifndef __com_sun_star_registry_XImplementationRegistration_idl__
|
|
#include <com/sun/star/registry/XImplementationRegistration.idl>
|
|
#endif
|
|
//=============================================================================
|
|
|
|
module com { module sun { module star { module registry {
|
|
|
|
//=============================================================================
|
|
|
|
/** extends the functionality of <type scope="com::sun::star::registry">XImplementationRegistration</type>. It can be useful to specify a complete Url to a component but register the components name only (library or jar name).
|
|
|
|
@since OOo 2.4
|
|
*/
|
|
interface XImplementationRegistration2: com::sun::star::registry::XImplementationRegistration
|
|
{
|
|
//-------------------------------------------------------------------------
|
|
|
|
/** registers a component which provides one or more implementations.
|
|
|
|
@param aLocation
|
|
specifies the location of the component with the URL.
|
|
|
|
@param aRegisteredLocation
|
|
the URL with which the component is actually registered.
|
|
|
|
@param xReg
|
|
specifies the registry where the component should be installed.
|
|
If it is a NULL interface, then the component will be installed
|
|
in the system registry (if this feature is supported).
|
|
*/
|
|
void registerImplementationWithLocation( [in] string aImplementationLoader,
|
|
[in] string aLocation, [in] string aRegisteredLocation,
|
|
[in] com::sun::star::registry::XSimpleRegistry xReg )
|
|
raises( com::sun::star::registry::CannotRegisterImplementationException );
|
|
|
|
};
|
|
|
|
//=============================================================================
|
|
|
|
}; }; }; };
|
|
|
|
/*=============================================================================
|
|
|
|
=============================================================================*/
|
|
#endif
|