Details
struct GdomeDOMImplementation
struct GdomeDOMImplementation {
const GdomeDOMImplementationVtab *vtab; /* deprecated */
GdomePrivateList *private;
}; |
gdome_DOMImplementation_mkref ()
Constructor of the DOMImplementation interface.
gdome_DOMImplementation_ref ()
Increase the reference count of the DOMImplementation structure.
gdome_DOMImplementation_unref ()
Decrease the reference count of the DOMImplementation. Free the structure
if DOMImplementation will have zero reference.
gdome_DOMImplementation_query_interface ()
NOT IMPLEMENTED
gdome_DOMImplementation_hasFeature ()
Tests whether the DOM implementation implements a specific feature.
gdome_DOMImplementation_createDocumentType ()
Creates an empty DocumentType node. 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 DocumentType.
GDOME_NAMESPACE_ERR: Raised if the qualifiedName is malformed.
gdome_DOMImplementation_createDocument ()
Creates an XML Document object of the specified type with its document
element.
GDOME_NAMESPACE_ERR: Raised if the qualifiedName is malformed, if the
qualifiedName has a prefix and the namespaceURI is NULL, or if the
qualifiedName has a prefix that is "xml" and the namespaceURI is different
from "http://www.w3.org/XML/1998/namespace"
gdome_DOMImplementation_parseFile ()
Parse a XML file and build the DOM tree.
gdome_DOMImplementation_validateFile ()
Parse and Valid a XML file and build the DOM tree.
gdome_DOMImplementation_saveFile ()
Save the DOM tree of the Document specified to file.
gdome_DOMImplementation_freeDoc ()
Free all objects and structures associated to the Document specified.