dom::DOMImplementation Interface Reference

dom::DOMImplementation Interface Reference
Inheritance diagram for dom::DOMImplementation:
Collaboration diagram for dom::DOMImplementation:

Public Member Functions

boolean hasFeature (in DOMString feature, in DOMString version)
DocumentType createDocumentType (in DOMString qualifiedName, in DOMString publicId, in DOMString systemId) raises (DOMException)
Document createDocument (in DOMString namespaceURI, in DOMString qualifiedName, in DocumentType doctype) raises (DOMException)
- Public Member Functions inherited from XPCOM::IObject
void add_ref ()
 Called to indicate that some code is keeping an owning reference to the object.
oneway void release_ref ()
 Removes a reference to an object which was created by some other means (e.g.
IObject query_interface (in utf8string id)
 Returns an IObject of the same implementation, which supports a specific interface.

Additional Inherited Members

- Public Attributes inherited from XPCOM::IObject
readonly attribute string objid
 Fetches the ID of the object.
readonly attribute interface_list supported_interfaces
 Fetches all supported interfaces.

Detailed Description

Definition at line 57 of file DOM_APISPEC.idl.

Member Function Documentation

Document dom::DOMImplementation::createDocument ( in DOMString  namespaceURI,
in DOMString  qualifiedName,
in DocumentType  doctype 
) raises (DOMException)
DocumentType dom::DOMImplementation::createDocumentType ( in DOMString  qualifiedName,
in DOMString  publicId,
in DOMString  systemId 
) raises (DOMException)
boolean dom::DOMImplementation::hasFeature ( in DOMString  feature,
in DOMString  version 
)
Back to Top