Visit Mozilla.org

FUEL:Extensions

From MDC

This article covers features introduced in Firefox 3

Contents

[edit] Method overview

boolean has(in AString aId)
fuelIExtension get(in AString aId)

[edit] Attributes

Attribute Type Description
all readonly attribute nsIVariant Array of fuelIExtension listing all extensions in the application.

[edit] Methods

[edit] has()

Determines if an extension exists with the given id.

boolean has(in AString aId)
[edit] Parameters
aId
The id of an extension
[edit] Return value

true if an extension exists with the given id, false otherwise.

[edit] get()

Gets an extension object with the given id.

fuelIExtension get(in AString aId)
[edit] Parameters
aId
The id of an extension
[edit] Return value

An extension object or null if no extension exists with the given id.

[edit] See also