|  |  |  |  | 
        
          |  |   |  
        
          | Modules   Namespace List   Class Hierarchy   Alphabetical List   Compound List   Namespace Members   Compound Members   Related Pages 
 org::w3c::dom::DOMImplementation Class Reference#include <DOMImplementation.h>
 Inheritance diagram for org::w3c::dom::DOMImplementation:
  List of all members. 
 Detailed DescriptionTheDOMImplementationinterface provides a number of methods for performing operations that are independent of any particular instance of the document object model.
See also the Document acdk::lang::Object Model (DOM) Level 3 Core Specification. 
 Author:Roger Rene Kommer 
 Version:Revision1.13 
 Date:Date2005/02/05 10:45:37 
 
 
 Member Function Documentation
 
  
    |  | 
Creates a DOM Document object of the specified type with its document element.
 
Note that based on the
 DocumentTypegiven to create the document, the implementation may instantiate specializedDocumentobjects that support additional features than the Core, such as HTML [DOM Level 2 HTML] . On the other hand, setting theDocumentTypeafter the document was created makes this very unlikely to happen. Alternatively, specializedDocumentcreation methods, such ascreateHTMLDocument[DOM Level 2 HTML] , can be used to obtain specific types ofDocumentobjects. Parameters:
  
    | namespaceURI | The namespace URI of the document element to create or null. |  | qualifiedName | The qualified name of the document element to be created or null. |  | doctype | The type of document to be created or null. Whendoctypeis notnull, itsNode.ownerDocumentattribute is set to the document being created. | 
 Returns:A new Documentobject with its document element. If theNamespaceURI,qualifiedName, anddoctypearenull, the returnedDocumentis empty with no document element.
 Exceptions:
  
    | DOMException | INVALID_CHARACTER_ERR: Raised if the specified qualified name is not an XML name according to [XML 1.0]. NAMESPACE_ERR: Raised if the
 qualifiedNameis malformed, if thequalifiedNamehas a prefix and thenamespaceURIisnull, or if thequalifiedNameisnulland thenamespaceURIis different fromnull, or if thequalifiedNamehas a prefix that is xml and thenamespaceURIis different from http://www.w3.org/XML/1998/namespace [XML Namespaces] , or if the DOM implementation does not support theXMLfeature but a non-null namespace URI was provided, since namespaces were defined by XML.WRONG_DOCUMENT_ERR: Raised if
 doctypehas already been used with a different document or was created from a different implementation.NOT_SUPPORTED_ERR: May be raised if the implementation does not support the feature XML and the language exposed through the Document does not support XML Namespaces (such as [HTML 4.01]).
 | 
 Since:DOM Level 2 
 
Implemented in acdk::xml::dom::XMLDocument.     |  
 
  
    | 
        
          | virtual bool org::w3c::dom::DOMImplementation::hasFeature | ( | IN(RString) | feature, |  
          |  |  | IN(RString) | version |  
          |  | ) |  [pure virtual] |  |  |  |