Implemented by
- @mozilla.org/uriloader/content-handler;1?type=text/css
- @mozilla.org/uriloader/content-handler;1?type=text/plain
- @mozilla.org/uriloader/content-handler;1?type=image/svg+xml
- @mozilla.org/uriloader/content-handler;1?type=text/html
- @mozilla.org/uriloader/content-handler;1?type=image/x-icon
- @mozilla.org/uriloader/content-handler;1?type=image/vnd.microsoft.icon
- @mozilla.org/uriloader/content-handler;1?type=application/vnd.mozilla.xul+xml
- @mozilla.org/uriloader/content-handler;1?type=application/http-index-format
- @mozilla.org/uriloader/content-handler;1?type=image/png
- @mozilla.org/uriloader/content-handler;1?type=application/xhtml+xml
- @mozilla.org/toolkit/console-clh;1
- @mozilla.org/uriloader/content-handler;1?type=image/x-xbitmap
- @mozilla.org/uriloader/content-handler;1?type=image/jpg
- @mozilla.org/uriloader/content-handler;1?type=image/gif
- @mozilla.org/browser/final-clh;1
- @mozilla.org/uriloader/content-handler;1?type=text/xml
- @mozilla.org/uriloader/content-handler;1?type=image/bmp
- @mozilla.org/uriloader/content-handler;1?type=image/jpeg
- @mozilla.org/browser/clh;1
- @mozilla.org/uriloader/content-handler;1?type=text/rdf
- @mozilla.org/toolkit/default-clh;1
A class factory allows the creation of nsISupports derived components without specifying a concrete base class. @status FROZEN
[scriptable, uuid(00000001-0000-0000-c000-000000000046)]
interface nsIFactory : nsISupports
Methods
Creates an instance of a component.
@param aOuter Pointer to a component that wishes to be aggregated
in the resulting instance. This will be nsnull if no
aggregation is requested.
@param iid The IID of the interface being requested in
the component which is being currently created.
@param result [out] Pointer to the newly created instance, if successful.
@return NS_OK - Component successfully created and the interface
being requested was successfully returned in result.
NS_NOINTERFACE - Interface not accessible.
NS_ERROR_NO_AGGREGATION - if an 'outer' object is supplied, but the
component is not aggregatable.
NS_ERROR* - Method failure.
void
createInstance(in nsISupports aOuter, in nsIIDRef iid, [iid_is(iid), retval] out nsQIResult result)
LockFactory provides the client a way to keep the component
in memory until it is finished with it. The client can call
LockFactory(PR_TRUE) to lock the factory and LockFactory(PR_FALSE)
to release the factory.
@param lock - Must be PR_TRUE or PR_FALSE
@return NS_OK - If the lock operation was successful.
NS_ERROR* - Method failure.
void
lockFactory(in PRBool lock)
Compare to: