2002-01-24 04:50:35 +03:00
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is XPCOM.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Netscape Communications.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2001
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The nsIComponentRegistrar interface.
|
2002-04-03 01:10:39 +04:00
|
|
|
* @status FROZEN
|
2002-01-24 04:50:35 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "nsISupports.idl"
|
|
|
|
|
|
|
|
interface nsIFile;
|
|
|
|
interface nsIFactory;
|
|
|
|
interface nsISimpleEnumerator;
|
|
|
|
|
2010-06-10 22:11:11 +04:00
|
|
|
[scriptable, uuid(B0010F0B-C162-48A1-9E5E-E3453B80388C)]
|
2002-01-24 04:50:35 +03:00
|
|
|
interface nsIComponentRegistrar : nsISupports
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* registerFactory
|
|
|
|
*
|
|
|
|
* Register a factory with a given ContractID, CID and Class Name.
|
|
|
|
*
|
|
|
|
* @param aClass : CID of object
|
2010-06-10 22:11:11 +04:00
|
|
|
* @param aClassName : Class Name of CID (unused)
|
2010-06-23 23:18:13 +04:00
|
|
|
* @param aContractID : ContractID associated with CID aClass (optional)
|
2002-01-24 04:50:35 +03:00
|
|
|
* @param aFactory : Factory that will be registered for CID aClass
|
2010-06-23 23:18:13 +04:00
|
|
|
* If aFactory is null, the contract will be associated
|
|
|
|
* with a previously registered CID.
|
2002-01-24 04:50:35 +03:00
|
|
|
*/
|
|
|
|
void registerFactory(in nsCIDRef aClass,
|
|
|
|
in string aClassName,
|
|
|
|
in string aContractID,
|
|
|
|
in nsIFactory aFactory);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* unregisterFactory
|
|
|
|
*
|
|
|
|
* Unregister a factory associated with CID aClass.
|
|
|
|
*
|
2002-03-23 00:15:50 +03:00
|
|
|
* @param aClass : CID being unregistered
|
2002-01-24 04:50:35 +03:00
|
|
|
* @param aFactory : Factory previously registered to create instances of
|
2002-03-23 00:15:50 +03:00
|
|
|
* CID aClass.
|
2002-01-31 00:56:34 +03:00
|
|
|
*
|
|
|
|
* @return NS_OK Unregistration was successful.
|
|
|
|
* NS_ERROR* Method failure.
|
2002-01-24 04:50:35 +03:00
|
|
|
*/
|
|
|
|
void unregisterFactory(in nsCIDRef aClass,
|
|
|
|
in nsIFactory aFactory);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* isCIDRegistered
|
|
|
|
*
|
|
|
|
* Returns true if a factory is registered for the CID.
|
|
|
|
*
|
|
|
|
* @param aClass : CID queried for registeration
|
2002-03-23 00:15:50 +03:00
|
|
|
* @return : true if a factory is registered for CID
|
2002-01-24 04:50:35 +03:00
|
|
|
* false otherwise.
|
|
|
|
*/
|
|
|
|
boolean isCIDRegistered(in nsCIDRef aClass);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* isContractIDRegistered
|
|
|
|
*
|
|
|
|
* Returns true if a factory is registered for the contract id.
|
|
|
|
*
|
|
|
|
* @param aClass : contract id queried for registeration
|
2002-03-23 00:15:50 +03:00
|
|
|
* @return : true if a factory is registered for contract id
|
2002-01-24 04:50:35 +03:00
|
|
|
* false otherwise.
|
|
|
|
*/
|
2002-03-23 00:15:50 +03:00
|
|
|
boolean isContractIDRegistered(in string aContractID);
|
2002-01-24 04:50:35 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* enumerateCIDs
|
|
|
|
*
|
|
|
|
* Enumerate the list of all registered CIDs.
|
|
|
|
*
|
2002-12-17 22:11:59 +03:00
|
|
|
* @return : enumerator for CIDs. Elements of the enumeration can be QI'ed
|
|
|
|
* for the nsISupportsID interface. From the nsISupportsID, you
|
|
|
|
* can obtain the actual CID.
|
2002-01-24 04:50:35 +03:00
|
|
|
*/
|
|
|
|
nsISimpleEnumerator enumerateCIDs();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* enumerateContractIDs
|
|
|
|
*
|
|
|
|
* Enumerate the list of all registered ContractIDs.
|
|
|
|
*
|
2002-12-17 22:11:59 +03:00
|
|
|
* @return : enumerator for ContractIDs. Elements of the enumeration can be
|
|
|
|
* QI'ed for the nsISupportsCString interface. From the
|
|
|
|
* nsISupportsCString interface, you can obtain the actual
|
|
|
|
* Contract ID string.
|
2002-01-24 04:50:35 +03:00
|
|
|
*/
|
|
|
|
nsISimpleEnumerator enumerateContractIDs();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* contractIDToCID
|
|
|
|
*
|
|
|
|
* Returns the CID for a given Contract ID, if one exists and is registered.
|
|
|
|
*
|
|
|
|
* @return : Contract ID.
|
|
|
|
*/
|
|
|
|
nsCIDPtr contractIDToCID(in string aContractID);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|