Details
struct GdomeNode
struct GdomeNode {
const GdomeNodeVtab *vtab; /* deprecated */
GdomePrivateList *private;
}; |
gdome_n_ref ()
Increase the reference count of the specified Node.
gdome_n_unref ()
Decrease the reference count of the specified Node. Free the Node structure
if the Node will have zero reference.
gdome_n_query_interface ()
NOT IMPLEMENTED
gdome_n_set_nodeValue ()
Sets The value of this node, depending on its type.
GDOME_NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly.
gdome_n_previousSibling ()
gdome_n_insertBefore ()
Inserts the node newChild before the existing child node refChild. If
refChild is NULL, insert newChild at the end of the list of children.
If newChild is a DocumentFragment node, all of its children are inserted,
in the same order, before refChild. If the newChild is already in the
tree, it is first removed.
GDOME_WRONG_DOCUMENT_ERR: Raised if newChild was created from a different
document than the one that created this node.
GDOME_NOT_FOUND_ERR: Raised if refChild is not a child of this node.
GDOME_NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly.
gdome_n_replaceChild ()
Replaces the child node oldChild with newChild in the list of children,
and returns the oldChild node. If newChild is a DocumentFragment object,
oldChild is replaced by all of the DocumentFragment children, which are
inserted in the same order. If the newChild is already in the tree, it is
first removed.
GDOME_WRONG_DOCUMENT_ERR: Raised if newChild was created from a different
document than the one that created this node.
GDOME_NOT_FOUND_ERR: Raised if oldChild is not a child of this node.
GDOME_NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly.
gdome_n_removeChild ()
Removes the child node indicated by oldChild from the list of children, and
returns it.
GDOME_NOT_FOUND_ERR: Raised if oldChild is not a child of this node.
GDOME_NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly.
gdome_n_appendChild ()
Adds the node newChild to the end of the list of children of this node.
If the newChild is already in the tree, it is first removed. If it is a
DocumentFragment node, the entire contents of the document fragment are
moved into the child list of this node
GDOME_WRONG_DOCUMENT_ERR: Raised if newChild was created from a different
document than the one that created this node.
GDOME_NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly.
gdome_n_normalize ()
Puts all Text nodes in the full depth of the sub-tree underneath this Node,
including attribute nodes, into a "normal" form where only structure (e.g.,
elements, comments, processing instructions, CDATA sections, and entity
references) separates Text nodes, i.e., there are neither adjacent Text
nodes nor empty Text nodes.
gdome_n_isSupported ()
Tests whether the DOM implementation implements a specific feature and that
feature is supported by this node.
gdome_n_set_prefix ()
Sets a new nemaspace prefix for this node.
GDOME_NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly.
GDOME_NAMESPACE_ERR: Raised if the specified prefix is malformed, if the
namespaceURI of this node is NULL, if the specified prefix is "xml" and
the namespaceURI of this node is different from
"http://www.w3.org/XML/1998/namespace", if this node is an attribute and the
specified prefix is "xmlns" and the namespaceURI of this node is different
from "http://www.w3.org/2000/xmlns/", or if this node is an attribute and
the qualifiedName of this node is "xmlns"
gdome_n_addEventListener ()
NOT IMPLEMENTED YET
gdome_n_removeEventListener ()
NOT IMPLEMENTED YET
gdome_n_dispatchEvent ()
NOT IMPLEMENTED YET