DOMImplementation
interface provides a number of methods for performing operations that are independent of any particular instance of the document object model.
More...
#include <DOMImplementation.hpp>
Inheritance diagram for xercesc::DOMImplementation:
Non-standard extension | |
virtual DOMDocument * | createDocument (MemoryManager *const manager=XMLPlatformUtils::fgMemoryManager)=0 |
Non-standard extension. | |
DOMImplementation * | getImplementation () |
Non-standard extension. | |
bool | loadDOMExceptionMsg (const short msgToLoad, XMLCh *const toFill, const XMLSize_t maxChars) |
Non-standard extension. | |
Public Member Functions | |
Destructor | |
virtual | ~DOMImplementation () |
Destructor. | |
Functions introduced in DOM Level 1 | |
virtual bool | hasFeature (const XMLCh *feature, const XMLCh *version) const =0 |
Test if the DOM implementation implements a specific feature. | |
Functions introduced in DOM Level 2 | |
virtual DOMDocumentType * | createDocumentType (const XMLCh *qualifiedName, const XMLCh *publicId, const XMLCh *systemId)=0 |
Creates an empty DOMDocumentType node. | |
virtual DOMDocument * | createDocument (const XMLCh *namespaceURI, const XMLCh *qualifiedName, DOMDocumentType *doctype, MemoryManager *const manager=XMLPlatformUtils::fgMemoryManager)=0 |
Creates a DOMDocument object of the specified type with its document element. | |
Functions introduced in DOM Level 3 | |
virtual void * | getFeature (const XMLCh *feature, const XMLCh *version) const =0 |
This method returns a specialized object which implements the specialized APIs of the specified feature and version, as specified in DOM Features. | |
Protected Member Functions | |
Hidden constructors | |
DOMImplementation () |
DOMImplementation
interface provides a number of methods for performing operations that are independent of any particular instance of the document object model.
|
|
|
Destructor.
|
|
Non-standard extension. Create a completely empty document that has neither a root element or a doctype node. |
|
Creates a DOMDocument object of the specified type with its document element.
|
|
Creates an empty
Entity declarations and notations are not made available. Entity reference expansions and default attribute additions do not occur. It is expected that a future version of the DOM will provide a way for populating a
|
|
This method returns a specialized object which implements the specialized APIs of the specified feature and version, as specified in DOM Features.
This method also allow the implementation to provide specialized objects which do not support the
|
|
Non-standard extension. Factory method for getting a DOMImplementation object. The DOM implementation retains ownership of the returned object. Application code should NOT delete it. |
|
Test if the DOM implementation implements a specific feature.
|
|
Non-standard extension. Load the default error text message for DOMException.
|