--- win32/gnome/gdome2-x.x.x/libgdome/Attic/gdome.c 2005/12/08 09:36:46 1.1 +++ win32/gnome/gdome2-x.x.x/libgdome/Attic/gdome.c 2005/12/19 14:12:01 1.2 @@ -660,7 +660,7 @@ gdome_di_eventIsEnabled (GdomeDOMImpleme } /****************************************************************************** - GdomeNode interface API + xmlNode interface API ******************************************************************************/ /** * gdome_n_attributes: @@ -671,7 +671,7 @@ gdome_di_eventIsEnabled (GdomeDOMImpleme * Element) or %NULL otherwise. */ GdomeNamedNodeMap * -gdome_n_attributes (GdomeNode *self, GdomeException *exc) +gdome_n_attributes (xmlNode *self, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -695,7 +695,7 @@ gdome_n_attributes (GdomeNode *self, Gdo * obtain the attributes. */ GdomeNodeList * -gdome_n_childNodes (GdomeNode *self, GdomeException *exc) +gdome_n_childNodes (xmlNode *self, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -716,8 +716,8 @@ gdome_n_childNodes (GdomeNode *self, Gdo * Returns: the first child of this node. If there is no such node, * this returns %NULL. */ -GdomeNode * -gdome_n_firstChild (GdomeNode *self, GdomeException *exc) +xmlNode * +gdome_n_firstChild (xmlNode *self, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -738,8 +738,8 @@ gdome_n_firstChild (GdomeNode *self, Gdo * Returns: the last child of this node. If there is no such node, * this returns %NULL. */ -GdomeNode * -gdome_n_lastChild (GdomeNode *self, GdomeException *exc) +xmlNode * +gdome_n_lastChild (xmlNode *self, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -763,7 +763,7 @@ gdome_n_lastChild (GdomeNode *self, Gdom * always %NULL. */ GdomeDOMString * -gdome_n_localName (GdomeNode *self, GdomeException *exc) +gdome_n_localName (xmlNode *self, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -787,7 +787,7 @@ gdome_n_localName (GdomeNode *self, Gdom * always %NULL. */ GdomeDOMString * -gdome_n_namespaceURI (GdomeNode *self, GdomeException *exc) +gdome_n_namespaceURI (xmlNode *self, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -808,8 +808,8 @@ gdome_n_namespaceURI (GdomeNode *self, G * Returns: the node immediately following this node. If there is no such * node, this returns %NULL. */ -GdomeNode * -gdome_n_nextSibling (GdomeNode *self, GdomeException *exc) +xmlNode * +gdome_n_nextSibling (xmlNode *self, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -830,7 +830,7 @@ gdome_n_nextSibling (GdomeNode *self, Gd * Returns: the name of this node, depending on its type. */ GdomeDOMString * -gdome_n_nodeName (GdomeNode *self, GdomeException *exc) +gdome_n_nodeName (xmlNode *self, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -852,7 +852,7 @@ gdome_n_nodeName (GdomeNode *self, Gdome * object or %0 on error. */ unsigned short -gdome_n_nodeType (GdomeNode *self, GdomeException *exc) +gdome_n_nodeType (xmlNode *self, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -873,7 +873,7 @@ gdome_n_nodeType (GdomeNode *self, Gdome * Returns: the value of this node, depending on its type. */ GdomeDOMString * -gdome_n_nodeValue (GdomeNode *self, GdomeException *exc) +gdome_n_nodeValue (xmlNode *self, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -897,7 +897,7 @@ gdome_n_nodeValue (GdomeNode *self, Gdom * %GDOME_NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly. */ void -gdome_n_set_nodeValue (GdomeNode *self, GdomeDOMString *nodeValue, GdomeException *exc) +gdome_n_set_nodeValue (xmlNode *self, GdomeDOMString *nodeValue, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -920,7 +920,7 @@ gdome_n_set_nodeValue (GdomeNode *self, * DocumentType which is not used with any Document yet, this is %NULL. */ GdomeDocument * -gdome_n_ownerDocument (GdomeNode *self, GdomeException *exc) +gdome_n_ownerDocument (xmlNode *self, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -943,8 +943,8 @@ gdome_n_ownerDocument (GdomeNode *self, * if a node has just been created and not yet added to the tree, or if it has * been removed from the tree, this is %NULL. */ -GdomeNode * -gdome_n_parentNode (GdomeNode *self, GdomeException *exc) +xmlNode * +gdome_n_parentNode (xmlNode *self, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -968,7 +968,7 @@ gdome_n_parentNode (GdomeNode *self, Gdo * always %NULL. */ GdomeDOMString * -gdome_n_prefix (GdomeNode *self, GdomeException *exc) +gdome_n_prefix (xmlNode *self, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -999,7 +999,7 @@ gdome_n_prefix (GdomeNode *self, GdomeEx * an attribute and the qualifiedName of this node is "xmlns". */ void -gdome_n_set_prefix (GdomeNode *self, GdomeDOMString *prefix, GdomeException *exc) +gdome_n_set_prefix (xmlNode *self, GdomeDOMString *prefix, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -1020,8 +1020,8 @@ gdome_n_set_prefix (GdomeNode *self, Gdo * Returns: the node immediately preceding this node. If there is no such * node, this returns %NULL. */ -GdomeNode * -gdome_n_previousSibling (GdomeNode *self, GdomeException *exc) +xmlNode * +gdome_n_previousSibling (xmlNode *self, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -1042,7 +1042,7 @@ gdome_n_previousSibling (GdomeNode *self * Increase the reference count of the specified Node. */ void -gdome_n_ref (GdomeNode *self, GdomeException *exc) +gdome_n_ref (xmlNode *self, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -1064,7 +1064,7 @@ gdome_n_ref (GdomeNode *self, GdomeExcep * if the Node will have zero reference. */ void -gdome_n_unref (GdomeNode *self, GdomeException *exc) +gdome_n_unref (xmlNode *self, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -1095,7 +1095,7 @@ gdome_n_unref (GdomeNode *self, GdomeExc * or %NULL if the @interface is not supported by this Object. */ gpointer -gdome_n_query_interface (GdomeNode *self, const char *interface, GdomeException *exc) +gdome_n_query_interface (xmlNode *self, const char *interface, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -1127,8 +1127,8 @@ gdome_n_query_interface (GdomeNode *self * %GDOME_NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly. * Returns: the node added. */ -GdomeNode * -gdome_n_appendChild (GdomeNode *self, GdomeNode *newChild, GdomeException *exc) +xmlNode * +gdome_n_appendChild (xmlNode *self, xmlNode *newChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -1159,8 +1159,8 @@ gdome_n_appendChild (GdomeNode *self, Gd * supported. * Returns: the duplicate node. */ -GdomeNode * -gdome_n_cloneNode (GdomeNode *self, GdomeBoolean deep, GdomeException *exc) +xmlNode * +gdome_n_cloneNode (xmlNode *self, GdomeBoolean deep, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -1181,7 +1181,7 @@ gdome_n_cloneNode (GdomeNode *self, Gdom * Returns: %TRUE if this node has any attributes, %FALSE otherwise. */ GdomeBoolean -gdome_n_hasAttributes (GdomeNode *self, GdomeException *exc) +gdome_n_hasAttributes (xmlNode *self, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -1202,7 +1202,7 @@ gdome_n_hasAttributes (GdomeNode *self, * Returns: %TRUE if this node has any children, %FALSE otherwise. */ GdomeBoolean -gdome_n_hasChildNodes (GdomeNode *self, GdomeException *exc) +gdome_n_hasChildNodes (xmlNode *self, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -1238,8 +1238,8 @@ gdome_n_hasChildNodes (GdomeNode *self, * %GDOME_NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly. * Returns: the node being inserted. */ -GdomeNode * -gdome_n_insertBefore (GdomeNode *self, GdomeNode *newChild, GdomeNode *refChild, GdomeException *exc) +xmlNode * +gdome_n_insertBefore (xmlNode *self, xmlNode *newChild, xmlNode *refChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -1268,7 +1268,7 @@ gdome_n_insertBefore (GdomeNode *self, G * otherwise. */ GdomeBoolean -gdome_n_isSupported (GdomeNode *self, GdomeDOMString *feature, GdomeDOMString *version, GdomeException *exc) +gdome_n_isSupported (xmlNode *self, GdomeDOMString *feature, GdomeDOMString *version, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -1293,7 +1293,7 @@ gdome_n_isSupported (GdomeNode *self, Gd * nodes nor empty Text nodes. */ void -gdome_n_normalize (GdomeNode *self, GdomeException *exc) +gdome_n_normalize (xmlNode *self, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -1319,8 +1319,8 @@ gdome_n_normalize (GdomeNode *self, Gdom * %GDOME_NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly. * Returns: the node removed. */ -GdomeNode * -gdome_n_removeChild (GdomeNode *self, GdomeNode *oldChild, GdomeException *exc) +xmlNode * +gdome_n_removeChild (xmlNode *self, xmlNode *oldChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -1355,8 +1355,8 @@ gdome_n_removeChild (GdomeNode *self, Gd * %GDOME_NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly. * Returns: the node replaced. */ -GdomeNode * -gdome_n_replaceChild (GdomeNode *self, GdomeNode *newChild, GdomeNode *oldChild, GdomeException *exc) +xmlNode * +gdome_n_replaceChild (xmlNode *self, xmlNode *newChild, xmlNode *oldChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -1393,7 +1393,7 @@ gdome_n_replaceChild (GdomeNode *self, G * they do not need to be removed with the removeEventListener method. */ void -gdome_n_addEventListener (GdomeNode *self, GdomeDOMString *type, GdomeEventListener *listener, GdomeBoolean useCapture, GdomeException *exc) +gdome_n_addEventListener (xmlNode *self, GdomeDOMString *type, GdomeEventListener *listener, GdomeBoolean useCapture, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -1428,7 +1428,7 @@ gdome_n_addEventListener (GdomeNode *sel * the EventTarget has no effect. */ void -gdome_n_removeEventListener (GdomeNode *self, GdomeDOMString *type, GdomeEventListener *listener, GdomeBoolean useCapture, GdomeException *exc) +gdome_n_removeEventListener (xmlNode *self, GdomeDOMString *type, GdomeEventListener *listener, GdomeBoolean useCapture, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -1461,7 +1461,7 @@ gdome_n_removeEventListener (GdomeNode * * is %TRUE. */ GdomeBoolean -gdome_n_dispatchEvent (GdomeNode *self, GdomeEvent *evt, GdomeException *exc) +gdome_n_dispatchEvent (xmlNode *self, GdomeEvent *evt, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -1493,7 +1493,7 @@ gdome_n_dispatchEvent (GdomeNode *self, * trigger this exception. */ void -gdome_n_subTreeDispatchEvent (GdomeNode *self, GdomeEvent *evt, GdomeException *exc) +gdome_n_subTreeDispatchEvent (xmlNode *self, GdomeEvent *evt, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -1516,7 +1516,7 @@ gdome_n_subTreeDispatchEvent (GdomeNode * Returns: %TRUE if @newChild can be added, %FALSE otherwise. */ GdomeBoolean -gdome_n_canAppend (GdomeNode *self, GdomeNode *newChild, GdomeException *exc) +gdome_n_canAppend (xmlNode *self, xmlNode *newChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -1553,7 +1553,7 @@ gdome_df_attributes (GdomeDocumentFragme return NULL; } *exc = 0; - return ((Gdome_xml_DocumentFragment *)self)->vtab->super.attributes ((GdomeNode *)self, exc); + return ((Gdome_xml_DocumentFragment *)self)->vtab->super.attributes ((xmlNode *)self, exc); } /** * gdome_df_childNodes: @@ -1577,7 +1577,7 @@ gdome_df_childNodes (GdomeDocumentFragme return NULL; } *exc = 0; - return ((Gdome_xml_DocumentFragment *)self)->vtab->super.childNodes ((GdomeNode *)self, exc); + return ((Gdome_xml_DocumentFragment *)self)->vtab->super.childNodes ((xmlNode *)self, exc); } /** * gdome_df_firstChild: @@ -1587,7 +1587,7 @@ gdome_df_childNodes (GdomeDocumentFragme * Returns: the first child of this node. If there is no such node, * this returns %NULL. */ -GdomeNode * +xmlNode * gdome_df_firstChild (GdomeDocumentFragment *self, GdomeException *exc) { if (self == NULL) { @@ -1599,7 +1599,7 @@ gdome_df_firstChild (GdomeDocumentFragme return NULL; } *exc = 0; - return ((Gdome_xml_DocumentFragment *)self)->vtab->super.firstChild ((GdomeNode *)self, exc); + return ((Gdome_xml_DocumentFragment *)self)->vtab->super.firstChild ((xmlNode *)self, exc); } /** * gdome_df_lastChild: @@ -1609,7 +1609,7 @@ gdome_df_firstChild (GdomeDocumentFragme * Returns: the last child of this node. If there is no such node, * this returns %NULL. */ -GdomeNode * +xmlNode * gdome_df_lastChild (GdomeDocumentFragment *self, GdomeException *exc) { if (self == NULL) { @@ -1621,7 +1621,7 @@ gdome_df_lastChild (GdomeDocumentFragmen return NULL; } *exc = 0; - return ((Gdome_xml_DocumentFragment *)self)->vtab->super.lastChild ((GdomeNode *)self, exc); + return ((Gdome_xml_DocumentFragment *)self)->vtab->super.lastChild ((xmlNode *)self, exc); } /** * gdome_df_localName: @@ -1645,7 +1645,7 @@ gdome_df_localName (GdomeDocumentFragmen return NULL; } *exc = 0; - return ((Gdome_xml_DocumentFragment *)self)->vtab->super.localName ((GdomeNode *)self, exc); + return ((Gdome_xml_DocumentFragment *)self)->vtab->super.localName ((xmlNode *)self, exc); } /** * gdome_df_namespaceURI: @@ -1669,7 +1669,7 @@ gdome_df_namespaceURI (GdomeDocumentFrag return NULL; } *exc = 0; - return ((Gdome_xml_DocumentFragment *)self)->vtab->super.namespaceURI ((GdomeNode *)self, exc); + return ((Gdome_xml_DocumentFragment *)self)->vtab->super.namespaceURI ((xmlNode *)self, exc); } /** * gdome_df_nextSibling: @@ -1679,7 +1679,7 @@ gdome_df_namespaceURI (GdomeDocumentFrag * Returns: the node immediately following this node. If there is no such * node, this returns %NULL. */ -GdomeNode * +xmlNode * gdome_df_nextSibling (GdomeDocumentFragment *self, GdomeException *exc) { if (self == NULL) { @@ -1691,7 +1691,7 @@ gdome_df_nextSibling (GdomeDocumentFragm return NULL; } *exc = 0; - return ((Gdome_xml_DocumentFragment *)self)->vtab->super.nextSibling ((GdomeNode *)self, exc); + return ((Gdome_xml_DocumentFragment *)self)->vtab->super.nextSibling ((xmlNode *)self, exc); } /** * gdome_df_nodeName: @@ -1712,7 +1712,7 @@ gdome_df_nodeName (GdomeDocumentFragment return NULL; } *exc = 0; - return ((Gdome_xml_DocumentFragment *)self)->vtab->super.nodeName ((GdomeNode *)self, exc); + return ((Gdome_xml_DocumentFragment *)self)->vtab->super.nodeName ((xmlNode *)self, exc); } /** * gdome_df_nodeType: @@ -1734,7 +1734,7 @@ gdome_df_nodeType (GdomeDocumentFragment return 0; } *exc = 0; - return ((Gdome_xml_DocumentFragment *)self)->vtab->super.nodeType ((GdomeNode *)self, exc); + return ((Gdome_xml_DocumentFragment *)self)->vtab->super.nodeType ((xmlNode *)self, exc); } /** * gdome_df_nodeValue: @@ -1755,7 +1755,7 @@ gdome_df_nodeValue (GdomeDocumentFragmen return NULL; } *exc = 0; - return ((Gdome_xml_DocumentFragment *)self)->vtab->super.nodeValue ((GdomeNode *)self, exc); + return ((Gdome_xml_DocumentFragment *)self)->vtab->super.nodeValue ((xmlNode *)self, exc); } /** * gdome_df_set_nodeValue: @@ -1779,7 +1779,7 @@ gdome_df_set_nodeValue (GdomeDocumentFra return; } *exc = 0; - ((Gdome_xml_DocumentFragment *)self)->vtab->super.set_nodeValue ((GdomeNode *)self, nodeValue, exc); + ((Gdome_xml_DocumentFragment *)self)->vtab->super.set_nodeValue ((xmlNode *)self, nodeValue, exc); } /** * gdome_df_ownerDocument: @@ -1802,7 +1802,7 @@ gdome_df_ownerDocument (GdomeDocumentFra return NULL; } *exc = 0; - return ((Gdome_xml_DocumentFragment *)self)->vtab->super.ownerDocument ((GdomeNode *)self, exc); + return ((Gdome_xml_DocumentFragment *)self)->vtab->super.ownerDocument ((xmlNode *)self, exc); } /** * gdome_df_parentNode: @@ -1814,7 +1814,7 @@ gdome_df_ownerDocument (GdomeDocumentFra * if a node has just been created and not yet added to the tree, or if it has * been removed from the tree, this is %NULL. */ -GdomeNode * +xmlNode * gdome_df_parentNode (GdomeDocumentFragment *self, GdomeException *exc) { if (self == NULL) { @@ -1826,7 +1826,7 @@ gdome_df_parentNode (GdomeDocumentFragme return NULL; } *exc = 0; - return ((Gdome_xml_DocumentFragment *)self)->vtab->super.parentNode ((GdomeNode *)self, exc); + return ((Gdome_xml_DocumentFragment *)self)->vtab->super.parentNode ((xmlNode *)self, exc); } /** * gdome_df_prefix: @@ -1850,7 +1850,7 @@ gdome_df_prefix (GdomeDocumentFragment * return NULL; } *exc = 0; - return ((Gdome_xml_DocumentFragment *)self)->vtab->super.prefix ((GdomeNode *)self, exc); + return ((Gdome_xml_DocumentFragment *)self)->vtab->super.prefix ((xmlNode *)self, exc); } /** * gdome_df_set_prefix: @@ -1881,7 +1881,7 @@ gdome_df_set_prefix (GdomeDocumentFragme return; } *exc = 0; - ((Gdome_xml_DocumentFragment *)self)->vtab->super.set_prefix ((GdomeNode *)self, prefix, exc); + ((Gdome_xml_DocumentFragment *)self)->vtab->super.set_prefix ((xmlNode *)self, prefix, exc); } /** * gdome_df_previousSibling: @@ -1891,7 +1891,7 @@ gdome_df_set_prefix (GdomeDocumentFragme * Returns: the node immediately preceding this node. If there is no such * node, this returns %NULL. */ -GdomeNode * +xmlNode * gdome_df_previousSibling (GdomeDocumentFragment *self, GdomeException *exc) { if (self == NULL) { @@ -1903,7 +1903,7 @@ gdome_df_previousSibling (GdomeDocumentF return NULL; } *exc = 0; - return ((Gdome_xml_DocumentFragment *)self)->vtab->super.previousSibling ((GdomeNode *)self, exc); + return ((Gdome_xml_DocumentFragment *)self)->vtab->super.previousSibling ((xmlNode *)self, exc); } /** * gdome_df_ref: @@ -1924,7 +1924,7 @@ gdome_df_ref (GdomeDocumentFragment *sel return; } *exc = 0; - ((Gdome_xml_DocumentFragment *)self)->vtab->super.ref ((GdomeNode *)self, exc); + ((Gdome_xml_DocumentFragment *)self)->vtab->super.ref ((xmlNode *)self, exc); } /** * gdome_df_unref: @@ -1954,7 +1954,7 @@ gdome_df_unref (GdomeDocumentFragment *s } return; } - ((Gdome_xml_DocumentFragment *)self)->vtab->super.unref ((GdomeNode *)self, exc); + ((Gdome_xml_DocumentFragment *)self)->vtab->super.unref ((xmlNode *)self, exc); } /** * gdome_df_query_interface: @@ -1977,7 +1977,7 @@ gdome_df_query_interface (GdomeDocumentF return NULL; } *exc = 0; - return ((Gdome_xml_DocumentFragment *)self)->vtab->super.query_interface ((GdomeNode *)self, interface, exc); + return ((Gdome_xml_DocumentFragment *)self)->vtab->super.query_interface ((xmlNode *)self, interface, exc); } /** * gdome_df_appendChild: @@ -1998,8 +1998,8 @@ gdome_df_query_interface (GdomeDocumentF * %GDOME_NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly. * Returns: the node added. */ -GdomeNode * -gdome_df_appendChild (GdomeDocumentFragment *self, GdomeNode *newChild, GdomeException *exc) +xmlNode * +gdome_df_appendChild (GdomeDocumentFragment *self, xmlNode *newChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -2010,7 +2010,7 @@ gdome_df_appendChild (GdomeDocumentFragm return NULL; } *exc = 0; - return ((Gdome_xml_DocumentFragment *)self)->vtab->super.appendChild ((GdomeNode *)self, newChild, exc); + return ((Gdome_xml_DocumentFragment *)self)->vtab->super.appendChild ((xmlNode *)self, newChild, exc); } /** * gdome_df_cloneNode: @@ -2030,7 +2030,7 @@ gdome_df_appendChild (GdomeDocumentFragm * supported. * Returns: the duplicate node. */ -GdomeNode * +xmlNode * gdome_df_cloneNode (GdomeDocumentFragment *self, GdomeBoolean deep, GdomeException *exc) { if (self == NULL) { @@ -2042,7 +2042,7 @@ gdome_df_cloneNode (GdomeDocumentFragmen return NULL; } *exc = 0; - return ((Gdome_xml_DocumentFragment *)self)->vtab->super.cloneNode ((GdomeNode *)self, deep, exc); + return ((Gdome_xml_DocumentFragment *)self)->vtab->super.cloneNode ((xmlNode *)self, deep, exc); } /** * gdome_df_hasAttributes: @@ -2063,7 +2063,7 @@ gdome_df_hasAttributes (GdomeDocumentFra return FALSE; } *exc = 0; - return ((Gdome_xml_DocumentFragment *)self)->vtab->super.hasAttributes ((GdomeNode *)self, exc); + return ((Gdome_xml_DocumentFragment *)self)->vtab->super.hasAttributes ((xmlNode *)self, exc); } /** * gdome_df_hasChildNodes: @@ -2084,7 +2084,7 @@ gdome_df_hasChildNodes (GdomeDocumentFra return FALSE; } *exc = 0; - return ((Gdome_xml_DocumentFragment *)self)->vtab->super.hasChildNodes ((GdomeNode *)self, exc); + return ((Gdome_xml_DocumentFragment *)self)->vtab->super.hasChildNodes ((xmlNode *)self, exc); } /** * gdome_df_insertBefore: @@ -2109,8 +2109,8 @@ gdome_df_hasChildNodes (GdomeDocumentFra * %GDOME_NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly. * Returns: the node being inserted. */ -GdomeNode * -gdome_df_insertBefore (GdomeDocumentFragment *self, GdomeNode *newChild, GdomeNode *refChild, GdomeException *exc) +xmlNode * +gdome_df_insertBefore (GdomeDocumentFragment *self, xmlNode *newChild, xmlNode *refChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -2121,7 +2121,7 @@ gdome_df_insertBefore (GdomeDocumentFrag return NULL; } *exc = 0; - return ((Gdome_xml_DocumentFragment *)self)->vtab->super.insertBefore ((GdomeNode *)self, newChild, refChild, exc); + return ((Gdome_xml_DocumentFragment *)self)->vtab->super.insertBefore ((xmlNode *)self, newChild, refChild, exc); } /** * gdome_df_isSupported: @@ -2150,7 +2150,7 @@ gdome_df_isSupported (GdomeDocumentFragm return FALSE; } *exc = 0; - return ((Gdome_xml_DocumentFragment *)self)->vtab->super.isSupported ((GdomeNode *)self, feature, version, exc); + return ((Gdome_xml_DocumentFragment *)self)->vtab->super.isSupported ((xmlNode *)self, feature, version, exc); } /** * gdome_df_normalize: @@ -2175,7 +2175,7 @@ gdome_df_normalize (GdomeDocumentFragmen return; } *exc = 0; - ((Gdome_xml_DocumentFragment *)self)->vtab->super.normalize ((GdomeNode *)self, exc); + ((Gdome_xml_DocumentFragment *)self)->vtab->super.normalize ((xmlNode *)self, exc); } /** * gdome_df_removeChild: @@ -2190,8 +2190,8 @@ gdome_df_normalize (GdomeDocumentFragmen * %GDOME_NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly. * Returns: the node removed. */ -GdomeNode * -gdome_df_removeChild (GdomeDocumentFragment *self, GdomeNode *oldChild, GdomeException *exc) +xmlNode * +gdome_df_removeChild (GdomeDocumentFragment *self, xmlNode *oldChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -2202,7 +2202,7 @@ gdome_df_removeChild (GdomeDocumentFragm return NULL; } *exc = 0; - return ((Gdome_xml_DocumentFragment *)self)->vtab->super.removeChild ((GdomeNode *)self, oldChild, exc); + return ((Gdome_xml_DocumentFragment *)self)->vtab->super.removeChild ((xmlNode *)self, oldChild, exc); } /** * gdome_df_replaceChild: @@ -2226,8 +2226,8 @@ gdome_df_removeChild (GdomeDocumentFragm * %GDOME_NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly. * Returns: the node replaced. */ -GdomeNode * -gdome_df_replaceChild (GdomeDocumentFragment *self, GdomeNode *newChild, GdomeNode *oldChild, GdomeException *exc) +xmlNode * +gdome_df_replaceChild (GdomeDocumentFragment *self, xmlNode *newChild, xmlNode *oldChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -2238,7 +2238,7 @@ gdome_df_replaceChild (GdomeDocumentFrag return NULL; } *exc = 0; - return ((Gdome_xml_DocumentFragment *)self)->vtab->super.replaceChild ((GdomeNode *)self, newChild, oldChild, exc); + return ((Gdome_xml_DocumentFragment *)self)->vtab->super.replaceChild ((xmlNode *)self, newChild, oldChild, exc); } /** * gdome_df_addEventListener: @@ -2275,7 +2275,7 @@ gdome_df_addEventListener (GdomeDocument return; } *exc = 0; - ((Gdome_xml_DocumentFragment *)self)->vtab->super.addEventListener ((GdomeNode *)self, type, listener, useCapture, exc); + ((Gdome_xml_DocumentFragment *)self)->vtab->super.addEventListener ((xmlNode *)self, type, listener, useCapture, exc); } /** * gdome_df_removeEventListener: @@ -2310,7 +2310,7 @@ gdome_df_removeEventListener (GdomeDocum return; } *exc = 0; - ((Gdome_xml_DocumentFragment *)self)->vtab->super.removeEventListener ((GdomeNode *)self, type, listener, useCapture, exc); + ((Gdome_xml_DocumentFragment *)self)->vtab->super.removeEventListener ((xmlNode *)self, type, listener, useCapture, exc); } /** * gdome_df_dispatchEvent: @@ -2343,7 +2343,7 @@ gdome_df_dispatchEvent (GdomeDocumentFra return FALSE; } *exc = 0; - return ((Gdome_xml_DocumentFragment *)self)->vtab->super.dispatchEvent ((GdomeNode *)self, evt, exc); + return ((Gdome_xml_DocumentFragment *)self)->vtab->super.dispatchEvent ((xmlNode *)self, evt, exc); } /** * gdome_df_subTreeDispatchEvent: @@ -2375,7 +2375,7 @@ gdome_df_subTreeDispatchEvent (GdomeDocu return; } *exc = 0; - ((Gdome_xml_DocumentFragment *)self)->vtab->super.subTreeDispatchEvent ((GdomeNode *)self, evt, exc); + ((Gdome_xml_DocumentFragment *)self)->vtab->super.subTreeDispatchEvent ((xmlNode *)self, evt, exc); } /** * gdome_df_canAppend: @@ -2387,7 +2387,7 @@ gdome_df_subTreeDispatchEvent (GdomeDocu * Returns: %TRUE if @newChild can be added, %FALSE otherwise. */ GdomeBoolean -gdome_df_canAppend (GdomeDocumentFragment *self, GdomeNode *newChild, GdomeException *exc) +gdome_df_canAppend (GdomeDocumentFragment *self, xmlNode *newChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -2398,7 +2398,7 @@ gdome_df_canAppend (GdomeDocumentFragmen return FALSE; } *exc = 0; - return ((Gdome_xml_DocumentFragment *)self)->vtab->super.canAppend ((GdomeNode *)self, newChild, exc); + return ((Gdome_xml_DocumentFragment *)self)->vtab->super.canAppend ((xmlNode *)self, newChild, exc); } /****************************************************************************** @@ -2832,8 +2832,8 @@ gdome_doc_getElementsByTagNameNS (GdomeD * supported. * Returns: the imported node that belongs to this Document. */ -GdomeNode * -gdome_doc_importNode (GdomeDocument *self, GdomeNode *importedNode, GdomeBoolean deep, GdomeException *exc) +xmlNode * +gdome_doc_importNode (GdomeDocument *self, xmlNode *importedNode, GdomeBoolean deep, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -2901,7 +2901,7 @@ gdome_doc_attributes (GdomeDocument *sel return NULL; } *exc = 0; - return ((Gdome_xml_Document *)self)->vtab->super.attributes ((GdomeNode *)self, exc); + return ((Gdome_xml_Document *)self)->vtab->super.attributes ((xmlNode *)self, exc); } /** * gdome_doc_childNodes: @@ -2925,7 +2925,7 @@ gdome_doc_childNodes (GdomeDocument *sel return NULL; } *exc = 0; - return ((Gdome_xml_Document *)self)->vtab->super.childNodes ((GdomeNode *)self, exc); + return ((Gdome_xml_Document *)self)->vtab->super.childNodes ((xmlNode *)self, exc); } /** * gdome_doc_firstChild: @@ -2935,7 +2935,7 @@ gdome_doc_childNodes (GdomeDocument *sel * Returns: the first child of this node. If there is no such node, * this returns %NULL. */ -GdomeNode * +xmlNode * gdome_doc_firstChild (GdomeDocument *self, GdomeException *exc) { if (self == NULL) { @@ -2947,7 +2947,7 @@ gdome_doc_firstChild (GdomeDocument *sel return NULL; } *exc = 0; - return ((Gdome_xml_Document *)self)->vtab->super.firstChild ((GdomeNode *)self, exc); + return ((Gdome_xml_Document *)self)->vtab->super.firstChild ((xmlNode *)self, exc); } /** * gdome_doc_lastChild: @@ -2957,7 +2957,7 @@ gdome_doc_firstChild (GdomeDocument *sel * Returns: the last child of this node. If there is no such node, * this returns %NULL. */ -GdomeNode * +xmlNode * gdome_doc_lastChild (GdomeDocument *self, GdomeException *exc) { if (self == NULL) { @@ -2969,7 +2969,7 @@ gdome_doc_lastChild (GdomeDocument *self return NULL; } *exc = 0; - return ((Gdome_xml_Document *)self)->vtab->super.lastChild ((GdomeNode *)self, exc); + return ((Gdome_xml_Document *)self)->vtab->super.lastChild ((xmlNode *)self, exc); } /** * gdome_doc_localName: @@ -2993,7 +2993,7 @@ gdome_doc_localName (GdomeDocument *self return NULL; } *exc = 0; - return ((Gdome_xml_Document *)self)->vtab->super.localName ((GdomeNode *)self, exc); + return ((Gdome_xml_Document *)self)->vtab->super.localName ((xmlNode *)self, exc); } /** * gdome_doc_namespaceURI: @@ -3017,7 +3017,7 @@ gdome_doc_namespaceURI (GdomeDocument *s return NULL; } *exc = 0; - return ((Gdome_xml_Document *)self)->vtab->super.namespaceURI ((GdomeNode *)self, exc); + return ((Gdome_xml_Document *)self)->vtab->super.namespaceURI ((xmlNode *)self, exc); } /** * gdome_doc_nextSibling: @@ -3027,7 +3027,7 @@ gdome_doc_namespaceURI (GdomeDocument *s * Returns: the node immediately following this node. If there is no such * node, this returns %NULL. */ -GdomeNode * +xmlNode * gdome_doc_nextSibling (GdomeDocument *self, GdomeException *exc) { if (self == NULL) { @@ -3039,7 +3039,7 @@ gdome_doc_nextSibling (GdomeDocument *se return NULL; } *exc = 0; - return ((Gdome_xml_Document *)self)->vtab->super.nextSibling ((GdomeNode *)self, exc); + return ((Gdome_xml_Document *)self)->vtab->super.nextSibling ((xmlNode *)self, exc); } /** * gdome_doc_nodeName: @@ -3060,7 +3060,7 @@ gdome_doc_nodeName (GdomeDocument *self, return NULL; } *exc = 0; - return ((Gdome_xml_Document *)self)->vtab->super.nodeName ((GdomeNode *)self, exc); + return ((Gdome_xml_Document *)self)->vtab->super.nodeName ((xmlNode *)self, exc); } /** * gdome_doc_nodeType: @@ -3082,7 +3082,7 @@ gdome_doc_nodeType (GdomeDocument *self, return 0; } *exc = 0; - return ((Gdome_xml_Document *)self)->vtab->super.nodeType ((GdomeNode *)self, exc); + return ((Gdome_xml_Document *)self)->vtab->super.nodeType ((xmlNode *)self, exc); } /** * gdome_doc_nodeValue: @@ -3103,7 +3103,7 @@ gdome_doc_nodeValue (GdomeDocument *self return NULL; } *exc = 0; - return ((Gdome_xml_Document *)self)->vtab->super.nodeValue ((GdomeNode *)self, exc); + return ((Gdome_xml_Document *)self)->vtab->super.nodeValue ((xmlNode *)self, exc); } /** * gdome_doc_set_nodeValue: @@ -3127,7 +3127,7 @@ gdome_doc_set_nodeValue (GdomeDocument * return; } *exc = 0; - ((Gdome_xml_Document *)self)->vtab->super.set_nodeValue ((GdomeNode *)self, nodeValue, exc); + ((Gdome_xml_Document *)self)->vtab->super.set_nodeValue ((xmlNode *)self, nodeValue, exc); } /** * gdome_doc_ownerDocument: @@ -3150,7 +3150,7 @@ gdome_doc_ownerDocument (GdomeDocument * return NULL; } *exc = 0; - return ((Gdome_xml_Document *)self)->vtab->super.ownerDocument ((GdomeNode *)self, exc); + return ((Gdome_xml_Document *)self)->vtab->super.ownerDocument ((xmlNode *)self, exc); } /** * gdome_doc_parentNode: @@ -3162,7 +3162,7 @@ gdome_doc_ownerDocument (GdomeDocument * * if a node has just been created and not yet added to the tree, or if it has * been removed from the tree, this is %NULL. */ -GdomeNode * +xmlNode * gdome_doc_parentNode (GdomeDocument *self, GdomeException *exc) { if (self == NULL) { @@ -3174,7 +3174,7 @@ gdome_doc_parentNode (GdomeDocument *sel return NULL; } *exc = 0; - return ((Gdome_xml_Document *)self)->vtab->super.parentNode ((GdomeNode *)self, exc); + return ((Gdome_xml_Document *)self)->vtab->super.parentNode ((xmlNode *)self, exc); } /** * gdome_doc_prefix: @@ -3198,7 +3198,7 @@ gdome_doc_prefix (GdomeDocument *self, G return NULL; } *exc = 0; - return ((Gdome_xml_Document *)self)->vtab->super.prefix ((GdomeNode *)self, exc); + return ((Gdome_xml_Document *)self)->vtab->super.prefix ((xmlNode *)self, exc); } /** * gdome_doc_set_prefix: @@ -3229,7 +3229,7 @@ gdome_doc_set_prefix (GdomeDocument *sel return; } *exc = 0; - ((Gdome_xml_Document *)self)->vtab->super.set_prefix ((GdomeNode *)self, prefix, exc); + ((Gdome_xml_Document *)self)->vtab->super.set_prefix ((xmlNode *)self, prefix, exc); } /** * gdome_doc_previousSibling: @@ -3239,7 +3239,7 @@ gdome_doc_set_prefix (GdomeDocument *sel * Returns: the node immediately preceding this node. If there is no such * node, this returns %NULL. */ -GdomeNode * +xmlNode * gdome_doc_previousSibling (GdomeDocument *self, GdomeException *exc) { if (self == NULL) { @@ -3251,7 +3251,7 @@ gdome_doc_previousSibling (GdomeDocument return NULL; } *exc = 0; - return ((Gdome_xml_Document *)self)->vtab->super.previousSibling ((GdomeNode *)self, exc); + return ((Gdome_xml_Document *)self)->vtab->super.previousSibling ((xmlNode *)self, exc); } /** * gdome_doc_ref: @@ -3272,7 +3272,7 @@ gdome_doc_ref (GdomeDocument *self, Gdom return; } *exc = 0; - ((Gdome_xml_Document *)self)->vtab->super.ref ((GdomeNode *)self, exc); + ((Gdome_xml_Document *)self)->vtab->super.ref ((xmlNode *)self, exc); } /** * gdome_doc_unref: @@ -3302,7 +3302,7 @@ gdome_doc_unref (GdomeDocument *self, Gd } return; } - ((Gdome_xml_Document *)self)->vtab->super.unref ((GdomeNode *)self, exc); + ((Gdome_xml_Document *)self)->vtab->super.unref ((xmlNode *)self, exc); } /** * gdome_doc_query_interface: @@ -3325,7 +3325,7 @@ gdome_doc_query_interface (GdomeDocument return NULL; } *exc = 0; - return ((Gdome_xml_Document *)self)->vtab->super.query_interface ((GdomeNode *)self, interface, exc); + return ((Gdome_xml_Document *)self)->vtab->super.query_interface ((xmlNode *)self, interface, exc); } /** * gdome_doc_appendChild: @@ -3346,8 +3346,8 @@ gdome_doc_query_interface (GdomeDocument * %GDOME_NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly. * Returns: the node added. */ -GdomeNode * -gdome_doc_appendChild (GdomeDocument *self, GdomeNode *newChild, GdomeException *exc) +xmlNode * +gdome_doc_appendChild (GdomeDocument *self, xmlNode *newChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -3358,7 +3358,7 @@ gdome_doc_appendChild (GdomeDocument *se return NULL; } *exc = 0; - return ((Gdome_xml_Document *)self)->vtab->super.appendChild ((GdomeNode *)self, newChild, exc); + return ((Gdome_xml_Document *)self)->vtab->super.appendChild ((xmlNode *)self, newChild, exc); } /** * gdome_doc_cloneNode: @@ -3378,7 +3378,7 @@ gdome_doc_appendChild (GdomeDocument *se * supported. * Returns: the duplicate node. */ -GdomeNode * +xmlNode * gdome_doc_cloneNode (GdomeDocument *self, GdomeBoolean deep, GdomeException *exc) { if (self == NULL) { @@ -3390,7 +3390,7 @@ gdome_doc_cloneNode (GdomeDocument *self return NULL; } *exc = 0; - return ((Gdome_xml_Document *)self)->vtab->super.cloneNode ((GdomeNode *)self, deep, exc); + return ((Gdome_xml_Document *)self)->vtab->super.cloneNode ((xmlNode *)self, deep, exc); } /** * gdome_doc_hasAttributes: @@ -3411,7 +3411,7 @@ gdome_doc_hasAttributes (GdomeDocument * return FALSE; } *exc = 0; - return ((Gdome_xml_Document *)self)->vtab->super.hasAttributes ((GdomeNode *)self, exc); + return ((Gdome_xml_Document *)self)->vtab->super.hasAttributes ((xmlNode *)self, exc); } /** * gdome_doc_hasChildNodes: @@ -3432,7 +3432,7 @@ gdome_doc_hasChildNodes (GdomeDocument * return FALSE; } *exc = 0; - return ((Gdome_xml_Document *)self)->vtab->super.hasChildNodes ((GdomeNode *)self, exc); + return ((Gdome_xml_Document *)self)->vtab->super.hasChildNodes ((xmlNode *)self, exc); } /** * gdome_doc_insertBefore: @@ -3457,8 +3457,8 @@ gdome_doc_hasChildNodes (GdomeDocument * * %GDOME_NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly. * Returns: the node being inserted. */ -GdomeNode * -gdome_doc_insertBefore (GdomeDocument *self, GdomeNode *newChild, GdomeNode *refChild, GdomeException *exc) +xmlNode * +gdome_doc_insertBefore (GdomeDocument *self, xmlNode *newChild, xmlNode *refChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -3469,7 +3469,7 @@ gdome_doc_insertBefore (GdomeDocument *s return NULL; } *exc = 0; - return ((Gdome_xml_Document *)self)->vtab->super.insertBefore ((GdomeNode *)self, newChild, refChild, exc); + return ((Gdome_xml_Document *)self)->vtab->super.insertBefore ((xmlNode *)self, newChild, refChild, exc); } /** * gdome_doc_isSupported: @@ -3498,7 +3498,7 @@ gdome_doc_isSupported (GdomeDocument *se return FALSE; } *exc = 0; - return ((Gdome_xml_Document *)self)->vtab->super.isSupported ((GdomeNode *)self, feature, version, exc); + return ((Gdome_xml_Document *)self)->vtab->super.isSupported ((xmlNode *)self, feature, version, exc); } /** * gdome_doc_normalize: @@ -3523,7 +3523,7 @@ gdome_doc_normalize (GdomeDocument *self return; } *exc = 0; - ((Gdome_xml_Document *)self)->vtab->super.normalize ((GdomeNode *)self, exc); + ((Gdome_xml_Document *)self)->vtab->super.normalize ((xmlNode *)self, exc); } /** * gdome_doc_removeChild: @@ -3538,8 +3538,8 @@ gdome_doc_normalize (GdomeDocument *self * %GDOME_NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly. * Returns: the node removed. */ -GdomeNode * -gdome_doc_removeChild (GdomeDocument *self, GdomeNode *oldChild, GdomeException *exc) +xmlNode * +gdome_doc_removeChild (GdomeDocument *self, xmlNode *oldChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -3550,7 +3550,7 @@ gdome_doc_removeChild (GdomeDocument *se return NULL; } *exc = 0; - return ((Gdome_xml_Document *)self)->vtab->super.removeChild ((GdomeNode *)self, oldChild, exc); + return ((Gdome_xml_Document *)self)->vtab->super.removeChild ((xmlNode *)self, oldChild, exc); } /** * gdome_doc_replaceChild: @@ -3574,8 +3574,8 @@ gdome_doc_removeChild (GdomeDocument *se * %GDOME_NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly. * Returns: the node replaced. */ -GdomeNode * -gdome_doc_replaceChild (GdomeDocument *self, GdomeNode *newChild, GdomeNode *oldChild, GdomeException *exc) +xmlNode * +gdome_doc_replaceChild (GdomeDocument *self, xmlNode *newChild, xmlNode *oldChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -3586,7 +3586,7 @@ gdome_doc_replaceChild (GdomeDocument *s return NULL; } *exc = 0; - return ((Gdome_xml_Document *)self)->vtab->super.replaceChild ((GdomeNode *)self, newChild, oldChild, exc); + return ((Gdome_xml_Document *)self)->vtab->super.replaceChild ((xmlNode *)self, newChild, oldChild, exc); } /** * gdome_doc_addEventListener: @@ -3623,7 +3623,7 @@ gdome_doc_addEventListener (GdomeDocumen return; } *exc = 0; - ((Gdome_xml_Document *)self)->vtab->super.addEventListener ((GdomeNode *)self, type, listener, useCapture, exc); + ((Gdome_xml_Document *)self)->vtab->super.addEventListener ((xmlNode *)self, type, listener, useCapture, exc); } /** * gdome_doc_removeEventListener: @@ -3658,7 +3658,7 @@ gdome_doc_removeEventListener (GdomeDocu return; } *exc = 0; - ((Gdome_xml_Document *)self)->vtab->super.removeEventListener ((GdomeNode *)self, type, listener, useCapture, exc); + ((Gdome_xml_Document *)self)->vtab->super.removeEventListener ((xmlNode *)self, type, listener, useCapture, exc); } /** * gdome_doc_dispatchEvent: @@ -3691,7 +3691,7 @@ gdome_doc_dispatchEvent (GdomeDocument * return FALSE; } *exc = 0; - return ((Gdome_xml_Document *)self)->vtab->super.dispatchEvent ((GdomeNode *)self, evt, exc); + return ((Gdome_xml_Document *)self)->vtab->super.dispatchEvent ((xmlNode *)self, evt, exc); } /** * gdome_doc_subTreeDispatchEvent: @@ -3723,7 +3723,7 @@ gdome_doc_subTreeDispatchEvent (GdomeDoc return; } *exc = 0; - ((Gdome_xml_Document *)self)->vtab->super.subTreeDispatchEvent ((GdomeNode *)self, evt, exc); + ((Gdome_xml_Document *)self)->vtab->super.subTreeDispatchEvent ((xmlNode *)self, evt, exc); } /** * gdome_doc_canAppend: @@ -3735,7 +3735,7 @@ gdome_doc_subTreeDispatchEvent (GdomeDoc * Returns: %TRUE if @newChild can be added, %FALSE otherwise. */ GdomeBoolean -gdome_doc_canAppend (GdomeDocument *self, GdomeNode *newChild, GdomeException *exc) +gdome_doc_canAppend (GdomeDocument *self, xmlNode *newChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -3746,7 +3746,7 @@ gdome_doc_canAppend (GdomeDocument *self return FALSE; } *exc = 0; - return ((Gdome_xml_Document *)self)->vtab->super.canAppend ((GdomeNode *)self, newChild, exc); + return ((Gdome_xml_Document *)self)->vtab->super.canAppend ((xmlNode *)self, newChild, exc); } /****************************************************************************** @@ -3979,7 +3979,7 @@ gdome_cd_attributes (GdomeCharacterData return NULL; } *exc = 0; - return ((Gdome_xml_CharacterData *)self)->vtab->super.attributes ((GdomeNode *)self, exc); + return ((Gdome_xml_CharacterData *)self)->vtab->super.attributes ((xmlNode *)self, exc); } /** * gdome_cd_childNodes: @@ -4003,7 +4003,7 @@ gdome_cd_childNodes (GdomeCharacterData return NULL; } *exc = 0; - return ((Gdome_xml_CharacterData *)self)->vtab->super.childNodes ((GdomeNode *)self, exc); + return ((Gdome_xml_CharacterData *)self)->vtab->super.childNodes ((xmlNode *)self, exc); } /** * gdome_cd_firstChild: @@ -4013,7 +4013,7 @@ gdome_cd_childNodes (GdomeCharacterData * Returns: the first child of this node. If there is no such node, * this returns %NULL. */ -GdomeNode * +xmlNode * gdome_cd_firstChild (GdomeCharacterData *self, GdomeException *exc) { if (self == NULL) { @@ -4025,7 +4025,7 @@ gdome_cd_firstChild (GdomeCharacterData return NULL; } *exc = 0; - return ((Gdome_xml_CharacterData *)self)->vtab->super.firstChild ((GdomeNode *)self, exc); + return ((Gdome_xml_CharacterData *)self)->vtab->super.firstChild ((xmlNode *)self, exc); } /** * gdome_cd_lastChild: @@ -4035,7 +4035,7 @@ gdome_cd_firstChild (GdomeCharacterData * Returns: the last child of this node. If there is no such node, * this returns %NULL. */ -GdomeNode * +xmlNode * gdome_cd_lastChild (GdomeCharacterData *self, GdomeException *exc) { if (self == NULL) { @@ -4047,7 +4047,7 @@ gdome_cd_lastChild (GdomeCharacterData * return NULL; } *exc = 0; - return ((Gdome_xml_CharacterData *)self)->vtab->super.lastChild ((GdomeNode *)self, exc); + return ((Gdome_xml_CharacterData *)self)->vtab->super.lastChild ((xmlNode *)self, exc); } /** * gdome_cd_localName: @@ -4071,7 +4071,7 @@ gdome_cd_localName (GdomeCharacterData * return NULL; } *exc = 0; - return ((Gdome_xml_CharacterData *)self)->vtab->super.localName ((GdomeNode *)self, exc); + return ((Gdome_xml_CharacterData *)self)->vtab->super.localName ((xmlNode *)self, exc); } /** * gdome_cd_namespaceURI: @@ -4095,7 +4095,7 @@ gdome_cd_namespaceURI (GdomeCharacterDat return NULL; } *exc = 0; - return ((Gdome_xml_CharacterData *)self)->vtab->super.namespaceURI ((GdomeNode *)self, exc); + return ((Gdome_xml_CharacterData *)self)->vtab->super.namespaceURI ((xmlNode *)self, exc); } /** * gdome_cd_nextSibling: @@ -4105,7 +4105,7 @@ gdome_cd_namespaceURI (GdomeCharacterDat * Returns: the node immediately following this node. If there is no such * node, this returns %NULL. */ -GdomeNode * +xmlNode * gdome_cd_nextSibling (GdomeCharacterData *self, GdomeException *exc) { if (self == NULL) { @@ -4117,7 +4117,7 @@ gdome_cd_nextSibling (GdomeCharacterData return NULL; } *exc = 0; - return ((Gdome_xml_CharacterData *)self)->vtab->super.nextSibling ((GdomeNode *)self, exc); + return ((Gdome_xml_CharacterData *)self)->vtab->super.nextSibling ((xmlNode *)self, exc); } /** * gdome_cd_nodeName: @@ -4138,7 +4138,7 @@ gdome_cd_nodeName (GdomeCharacterData *s return NULL; } *exc = 0; - return ((Gdome_xml_CharacterData *)self)->vtab->super.nodeName ((GdomeNode *)self, exc); + return ((Gdome_xml_CharacterData *)self)->vtab->super.nodeName ((xmlNode *)self, exc); } /** * gdome_cd_nodeType: @@ -4160,7 +4160,7 @@ gdome_cd_nodeType (GdomeCharacterData *s return 0; } *exc = 0; - return ((Gdome_xml_CharacterData *)self)->vtab->super.nodeType ((GdomeNode *)self, exc); + return ((Gdome_xml_CharacterData *)self)->vtab->super.nodeType ((xmlNode *)self, exc); } /** * gdome_cd_nodeValue: @@ -4181,7 +4181,7 @@ gdome_cd_nodeValue (GdomeCharacterData * return NULL; } *exc = 0; - return ((Gdome_xml_CharacterData *)self)->vtab->super.nodeValue ((GdomeNode *)self, exc); + return ((Gdome_xml_CharacterData *)self)->vtab->super.nodeValue ((xmlNode *)self, exc); } /** * gdome_cd_set_nodeValue: @@ -4205,7 +4205,7 @@ gdome_cd_set_nodeValue (GdomeCharacterDa return; } *exc = 0; - ((Gdome_xml_CharacterData *)self)->vtab->super.set_nodeValue ((GdomeNode *)self, nodeValue, exc); + ((Gdome_xml_CharacterData *)self)->vtab->super.set_nodeValue ((xmlNode *)self, nodeValue, exc); } /** * gdome_cd_ownerDocument: @@ -4228,7 +4228,7 @@ gdome_cd_ownerDocument (GdomeCharacterDa return NULL; } *exc = 0; - return ((Gdome_xml_CharacterData *)self)->vtab->super.ownerDocument ((GdomeNode *)self, exc); + return ((Gdome_xml_CharacterData *)self)->vtab->super.ownerDocument ((xmlNode *)self, exc); } /** * gdome_cd_parentNode: @@ -4240,7 +4240,7 @@ gdome_cd_ownerDocument (GdomeCharacterDa * if a node has just been created and not yet added to the tree, or if it has * been removed from the tree, this is %NULL. */ -GdomeNode * +xmlNode * gdome_cd_parentNode (GdomeCharacterData *self, GdomeException *exc) { if (self == NULL) { @@ -4252,7 +4252,7 @@ gdome_cd_parentNode (GdomeCharacterData return NULL; } *exc = 0; - return ((Gdome_xml_CharacterData *)self)->vtab->super.parentNode ((GdomeNode *)self, exc); + return ((Gdome_xml_CharacterData *)self)->vtab->super.parentNode ((xmlNode *)self, exc); } /** * gdome_cd_prefix: @@ -4276,7 +4276,7 @@ gdome_cd_prefix (GdomeCharacterData *sel return NULL; } *exc = 0; - return ((Gdome_xml_CharacterData *)self)->vtab->super.prefix ((GdomeNode *)self, exc); + return ((Gdome_xml_CharacterData *)self)->vtab->super.prefix ((xmlNode *)self, exc); } /** * gdome_cd_set_prefix: @@ -4307,7 +4307,7 @@ gdome_cd_set_prefix (GdomeCharacterData return; } *exc = 0; - ((Gdome_xml_CharacterData *)self)->vtab->super.set_prefix ((GdomeNode *)self, prefix, exc); + ((Gdome_xml_CharacterData *)self)->vtab->super.set_prefix ((xmlNode *)self, prefix, exc); } /** * gdome_cd_previousSibling: @@ -4317,7 +4317,7 @@ gdome_cd_set_prefix (GdomeCharacterData * Returns: the node immediately preceding this node. If there is no such * node, this returns %NULL. */ -GdomeNode * +xmlNode * gdome_cd_previousSibling (GdomeCharacterData *self, GdomeException *exc) { if (self == NULL) { @@ -4329,7 +4329,7 @@ gdome_cd_previousSibling (GdomeCharacter return NULL; } *exc = 0; - return ((Gdome_xml_CharacterData *)self)->vtab->super.previousSibling ((GdomeNode *)self, exc); + return ((Gdome_xml_CharacterData *)self)->vtab->super.previousSibling ((xmlNode *)self, exc); } /** * gdome_cd_ref: @@ -4350,7 +4350,7 @@ gdome_cd_ref (GdomeCharacterData *self, return; } *exc = 0; - ((Gdome_xml_CharacterData *)self)->vtab->super.ref ((GdomeNode *)self, exc); + ((Gdome_xml_CharacterData *)self)->vtab->super.ref ((xmlNode *)self, exc); } /** * gdome_cd_unref: @@ -4380,7 +4380,7 @@ gdome_cd_unref (GdomeCharacterData *self } return; } - ((Gdome_xml_CharacterData *)self)->vtab->super.unref ((GdomeNode *)self, exc); + ((Gdome_xml_CharacterData *)self)->vtab->super.unref ((xmlNode *)self, exc); } /** * gdome_cd_query_interface: @@ -4403,7 +4403,7 @@ gdome_cd_query_interface (GdomeCharacter return NULL; } *exc = 0; - return ((Gdome_xml_CharacterData *)self)->vtab->super.query_interface ((GdomeNode *)self, interface, exc); + return ((Gdome_xml_CharacterData *)self)->vtab->super.query_interface ((xmlNode *)self, interface, exc); } /** * gdome_cd_appendChild: @@ -4424,8 +4424,8 @@ gdome_cd_query_interface (GdomeCharacter * %GDOME_NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly. * Returns: the node added. */ -GdomeNode * -gdome_cd_appendChild (GdomeCharacterData *self, GdomeNode *newChild, GdomeException *exc) +xmlNode * +gdome_cd_appendChild (GdomeCharacterData *self, xmlNode *newChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -4436,7 +4436,7 @@ gdome_cd_appendChild (GdomeCharacterData return NULL; } *exc = 0; - return ((Gdome_xml_CharacterData *)self)->vtab->super.appendChild ((GdomeNode *)self, newChild, exc); + return ((Gdome_xml_CharacterData *)self)->vtab->super.appendChild ((xmlNode *)self, newChild, exc); } /** * gdome_cd_cloneNode: @@ -4456,7 +4456,7 @@ gdome_cd_appendChild (GdomeCharacterData * supported. * Returns: the duplicate node. */ -GdomeNode * +xmlNode * gdome_cd_cloneNode (GdomeCharacterData *self, GdomeBoolean deep, GdomeException *exc) { if (self == NULL) { @@ -4468,7 +4468,7 @@ gdome_cd_cloneNode (GdomeCharacterData * return NULL; } *exc = 0; - return ((Gdome_xml_CharacterData *)self)->vtab->super.cloneNode ((GdomeNode *)self, deep, exc); + return ((Gdome_xml_CharacterData *)self)->vtab->super.cloneNode ((xmlNode *)self, deep, exc); } /** * gdome_cd_hasAttributes: @@ -4489,7 +4489,7 @@ gdome_cd_hasAttributes (GdomeCharacterDa return FALSE; } *exc = 0; - return ((Gdome_xml_CharacterData *)self)->vtab->super.hasAttributes ((GdomeNode *)self, exc); + return ((Gdome_xml_CharacterData *)self)->vtab->super.hasAttributes ((xmlNode *)self, exc); } /** * gdome_cd_hasChildNodes: @@ -4510,7 +4510,7 @@ gdome_cd_hasChildNodes (GdomeCharacterDa return FALSE; } *exc = 0; - return ((Gdome_xml_CharacterData *)self)->vtab->super.hasChildNodes ((GdomeNode *)self, exc); + return ((Gdome_xml_CharacterData *)self)->vtab->super.hasChildNodes ((xmlNode *)self, exc); } /** * gdome_cd_insertBefore: @@ -4535,8 +4535,8 @@ gdome_cd_hasChildNodes (GdomeCharacterDa * %GDOME_NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly. * Returns: the node being inserted. */ -GdomeNode * -gdome_cd_insertBefore (GdomeCharacterData *self, GdomeNode *newChild, GdomeNode *refChild, GdomeException *exc) +xmlNode * +gdome_cd_insertBefore (GdomeCharacterData *self, xmlNode *newChild, xmlNode *refChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -4547,7 +4547,7 @@ gdome_cd_insertBefore (GdomeCharacterDat return NULL; } *exc = 0; - return ((Gdome_xml_CharacterData *)self)->vtab->super.insertBefore ((GdomeNode *)self, newChild, refChild, exc); + return ((Gdome_xml_CharacterData *)self)->vtab->super.insertBefore ((xmlNode *)self, newChild, refChild, exc); } /** * gdome_cd_isSupported: @@ -4576,7 +4576,7 @@ gdome_cd_isSupported (GdomeCharacterData return FALSE; } *exc = 0; - return ((Gdome_xml_CharacterData *)self)->vtab->super.isSupported ((GdomeNode *)self, feature, version, exc); + return ((Gdome_xml_CharacterData *)self)->vtab->super.isSupported ((xmlNode *)self, feature, version, exc); } /** * gdome_cd_normalize: @@ -4601,7 +4601,7 @@ gdome_cd_normalize (GdomeCharacterData * return; } *exc = 0; - ((Gdome_xml_CharacterData *)self)->vtab->super.normalize ((GdomeNode *)self, exc); + ((Gdome_xml_CharacterData *)self)->vtab->super.normalize ((xmlNode *)self, exc); } /** * gdome_cd_removeChild: @@ -4616,8 +4616,8 @@ gdome_cd_normalize (GdomeCharacterData * * %GDOME_NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly. * Returns: the node removed. */ -GdomeNode * -gdome_cd_removeChild (GdomeCharacterData *self, GdomeNode *oldChild, GdomeException *exc) +xmlNode * +gdome_cd_removeChild (GdomeCharacterData *self, xmlNode *oldChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -4628,7 +4628,7 @@ gdome_cd_removeChild (GdomeCharacterData return NULL; } *exc = 0; - return ((Gdome_xml_CharacterData *)self)->vtab->super.removeChild ((GdomeNode *)self, oldChild, exc); + return ((Gdome_xml_CharacterData *)self)->vtab->super.removeChild ((xmlNode *)self, oldChild, exc); } /** * gdome_cd_replaceChild: @@ -4652,8 +4652,8 @@ gdome_cd_removeChild (GdomeCharacterData * %GDOME_NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly. * Returns: the node replaced. */ -GdomeNode * -gdome_cd_replaceChild (GdomeCharacterData *self, GdomeNode *newChild, GdomeNode *oldChild, GdomeException *exc) +xmlNode * +gdome_cd_replaceChild (GdomeCharacterData *self, xmlNode *newChild, xmlNode *oldChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -4664,7 +4664,7 @@ gdome_cd_replaceChild (GdomeCharacterDat return NULL; } *exc = 0; - return ((Gdome_xml_CharacterData *)self)->vtab->super.replaceChild ((GdomeNode *)self, newChild, oldChild, exc); + return ((Gdome_xml_CharacterData *)self)->vtab->super.replaceChild ((xmlNode *)self, newChild, oldChild, exc); } /** * gdome_cd_addEventListener: @@ -4701,7 +4701,7 @@ gdome_cd_addEventListener (GdomeCharacte return; } *exc = 0; - ((Gdome_xml_CharacterData *)self)->vtab->super.addEventListener ((GdomeNode *)self, type, listener, useCapture, exc); + ((Gdome_xml_CharacterData *)self)->vtab->super.addEventListener ((xmlNode *)self, type, listener, useCapture, exc); } /** * gdome_cd_removeEventListener: @@ -4736,7 +4736,7 @@ gdome_cd_removeEventListener (GdomeChara return; } *exc = 0; - ((Gdome_xml_CharacterData *)self)->vtab->super.removeEventListener ((GdomeNode *)self, type, listener, useCapture, exc); + ((Gdome_xml_CharacterData *)self)->vtab->super.removeEventListener ((xmlNode *)self, type, listener, useCapture, exc); } /** * gdome_cd_dispatchEvent: @@ -4769,7 +4769,7 @@ gdome_cd_dispatchEvent (GdomeCharacterDa return FALSE; } *exc = 0; - return ((Gdome_xml_CharacterData *)self)->vtab->super.dispatchEvent ((GdomeNode *)self, evt, exc); + return ((Gdome_xml_CharacterData *)self)->vtab->super.dispatchEvent ((xmlNode *)self, evt, exc); } /** * gdome_cd_subTreeDispatchEvent: @@ -4801,7 +4801,7 @@ gdome_cd_subTreeDispatchEvent (GdomeChar return; } *exc = 0; - ((Gdome_xml_CharacterData *)self)->vtab->super.subTreeDispatchEvent ((GdomeNode *)self, evt, exc); + ((Gdome_xml_CharacterData *)self)->vtab->super.subTreeDispatchEvent ((xmlNode *)self, evt, exc); } /** * gdome_cd_canAppend: @@ -4813,7 +4813,7 @@ gdome_cd_subTreeDispatchEvent (GdomeChar * Returns: %TRUE if @newChild can be added, %FALSE otherwise. */ GdomeBoolean -gdome_cd_canAppend (GdomeCharacterData *self, GdomeNode *newChild, GdomeException *exc) +gdome_cd_canAppend (GdomeCharacterData *self, xmlNode *newChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -4824,7 +4824,7 @@ gdome_cd_canAppend (GdomeCharacterData * return FALSE; } *exc = 0; - return ((Gdome_xml_CharacterData *)self)->vtab->super.canAppend ((GdomeNode *)self, newChild, exc); + return ((Gdome_xml_CharacterData *)self)->vtab->super.canAppend ((xmlNode *)self, newChild, exc); } /****************************************************************************** @@ -5090,7 +5090,7 @@ gdome_t_attributes (GdomeText *self, Gdo return NULL; } *exc = 0; - return ((Gdome_xml_Text *)self)->vtab->super.super.attributes ((GdomeNode *)self, exc); + return ((Gdome_xml_Text *)self)->vtab->super.super.attributes ((xmlNode *)self, exc); } /** * gdome_t_childNodes: @@ -5114,7 +5114,7 @@ gdome_t_childNodes (GdomeText *self, Gdo return NULL; } *exc = 0; - return ((Gdome_xml_Text *)self)->vtab->super.super.childNodes ((GdomeNode *)self, exc); + return ((Gdome_xml_Text *)self)->vtab->super.super.childNodes ((xmlNode *)self, exc); } /** * gdome_t_firstChild: @@ -5124,7 +5124,7 @@ gdome_t_childNodes (GdomeText *self, Gdo * Returns: the first child of this node. If there is no such node, * this returns %NULL. */ -GdomeNode * +xmlNode * gdome_t_firstChild (GdomeText *self, GdomeException *exc) { if (self == NULL) { @@ -5136,7 +5136,7 @@ gdome_t_firstChild (GdomeText *self, Gdo return NULL; } *exc = 0; - return ((Gdome_xml_Text *)self)->vtab->super.super.firstChild ((GdomeNode *)self, exc); + return ((Gdome_xml_Text *)self)->vtab->super.super.firstChild ((xmlNode *)self, exc); } /** * gdome_t_lastChild: @@ -5146,7 +5146,7 @@ gdome_t_firstChild (GdomeText *self, Gdo * Returns: the last child of this node. If there is no such node, * this returns %NULL. */ -GdomeNode * +xmlNode * gdome_t_lastChild (GdomeText *self, GdomeException *exc) { if (self == NULL) { @@ -5158,7 +5158,7 @@ gdome_t_lastChild (GdomeText *self, Gdom return NULL; } *exc = 0; - return ((Gdome_xml_Text *)self)->vtab->super.super.lastChild ((GdomeNode *)self, exc); + return ((Gdome_xml_Text *)self)->vtab->super.super.lastChild ((xmlNode *)self, exc); } /** * gdome_t_localName: @@ -5182,7 +5182,7 @@ gdome_t_localName (GdomeText *self, Gdom return NULL; } *exc = 0; - return ((Gdome_xml_Text *)self)->vtab->super.super.localName ((GdomeNode *)self, exc); + return ((Gdome_xml_Text *)self)->vtab->super.super.localName ((xmlNode *)self, exc); } /** * gdome_t_namespaceURI: @@ -5206,7 +5206,7 @@ gdome_t_namespaceURI (GdomeText *self, G return NULL; } *exc = 0; - return ((Gdome_xml_Text *)self)->vtab->super.super.namespaceURI ((GdomeNode *)self, exc); + return ((Gdome_xml_Text *)self)->vtab->super.super.namespaceURI ((xmlNode *)self, exc); } /** * gdome_t_nextSibling: @@ -5216,7 +5216,7 @@ gdome_t_namespaceURI (GdomeText *self, G * Returns: the node immediately following this node. If there is no such * node, this returns %NULL. */ -GdomeNode * +xmlNode * gdome_t_nextSibling (GdomeText *self, GdomeException *exc) { if (self == NULL) { @@ -5228,7 +5228,7 @@ gdome_t_nextSibling (GdomeText *self, Gd return NULL; } *exc = 0; - return ((Gdome_xml_Text *)self)->vtab->super.super.nextSibling ((GdomeNode *)self, exc); + return ((Gdome_xml_Text *)self)->vtab->super.super.nextSibling ((xmlNode *)self, exc); } /** * gdome_t_nodeName: @@ -5249,7 +5249,7 @@ gdome_t_nodeName (GdomeText *self, Gdome return NULL; } *exc = 0; - return ((Gdome_xml_Text *)self)->vtab->super.super.nodeName ((GdomeNode *)self, exc); + return ((Gdome_xml_Text *)self)->vtab->super.super.nodeName ((xmlNode *)self, exc); } /** * gdome_t_nodeType: @@ -5271,7 +5271,7 @@ gdome_t_nodeType (GdomeText *self, Gdome return 0; } *exc = 0; - return ((Gdome_xml_Text *)self)->vtab->super.super.nodeType ((GdomeNode *)self, exc); + return ((Gdome_xml_Text *)self)->vtab->super.super.nodeType ((xmlNode *)self, exc); } /** * gdome_t_nodeValue: @@ -5292,7 +5292,7 @@ gdome_t_nodeValue (GdomeText *self, Gdom return NULL; } *exc = 0; - return ((Gdome_xml_Text *)self)->vtab->super.super.nodeValue ((GdomeNode *)self, exc); + return ((Gdome_xml_Text *)self)->vtab->super.super.nodeValue ((xmlNode *)self, exc); } /** * gdome_t_set_nodeValue: @@ -5316,7 +5316,7 @@ gdome_t_set_nodeValue (GdomeText *self, return; } *exc = 0; - ((Gdome_xml_Text *)self)->vtab->super.super.set_nodeValue ((GdomeNode *)self, nodeValue, exc); + ((Gdome_xml_Text *)self)->vtab->super.super.set_nodeValue ((xmlNode *)self, nodeValue, exc); } /** * gdome_t_ownerDocument: @@ -5339,7 +5339,7 @@ gdome_t_ownerDocument (GdomeText *self, return NULL; } *exc = 0; - return ((Gdome_xml_Text *)self)->vtab->super.super.ownerDocument ((GdomeNode *)self, exc); + return ((Gdome_xml_Text *)self)->vtab->super.super.ownerDocument ((xmlNode *)self, exc); } /** * gdome_t_parentNode: @@ -5351,7 +5351,7 @@ gdome_t_ownerDocument (GdomeText *self, * if a node has just been created and not yet added to the tree, or if it has * been removed from the tree, this is %NULL. */ -GdomeNode * +xmlNode * gdome_t_parentNode (GdomeText *self, GdomeException *exc) { if (self == NULL) { @@ -5363,7 +5363,7 @@ gdome_t_parentNode (GdomeText *self, Gdo return NULL; } *exc = 0; - return ((Gdome_xml_Text *)self)->vtab->super.super.parentNode ((GdomeNode *)self, exc); + return ((Gdome_xml_Text *)self)->vtab->super.super.parentNode ((xmlNode *)self, exc); } /** * gdome_t_prefix: @@ -5387,7 +5387,7 @@ gdome_t_prefix (GdomeText *self, GdomeEx return NULL; } *exc = 0; - return ((Gdome_xml_Text *)self)->vtab->super.super.prefix ((GdomeNode *)self, exc); + return ((Gdome_xml_Text *)self)->vtab->super.super.prefix ((xmlNode *)self, exc); } /** * gdome_t_set_prefix: @@ -5418,7 +5418,7 @@ gdome_t_set_prefix (GdomeText *self, Gdo return; } *exc = 0; - ((Gdome_xml_Text *)self)->vtab->super.super.set_prefix ((GdomeNode *)self, prefix, exc); + ((Gdome_xml_Text *)self)->vtab->super.super.set_prefix ((xmlNode *)self, prefix, exc); } /** * gdome_t_previousSibling: @@ -5428,7 +5428,7 @@ gdome_t_set_prefix (GdomeText *self, Gdo * Returns: the node immediately preceding this node. If there is no such * node, this returns %NULL. */ -GdomeNode * +xmlNode * gdome_t_previousSibling (GdomeText *self, GdomeException *exc) { if (self == NULL) { @@ -5440,7 +5440,7 @@ gdome_t_previousSibling (GdomeText *self return NULL; } *exc = 0; - return ((Gdome_xml_Text *)self)->vtab->super.super.previousSibling ((GdomeNode *)self, exc); + return ((Gdome_xml_Text *)self)->vtab->super.super.previousSibling ((xmlNode *)self, exc); } /** * gdome_t_ref: @@ -5461,7 +5461,7 @@ gdome_t_ref (GdomeText *self, GdomeExcep return; } *exc = 0; - ((Gdome_xml_Text *)self)->vtab->super.super.ref ((GdomeNode *)self, exc); + ((Gdome_xml_Text *)self)->vtab->super.super.ref ((xmlNode *)self, exc); } /** * gdome_t_unref: @@ -5491,7 +5491,7 @@ gdome_t_unref (GdomeText *self, GdomeExc } return; } - ((Gdome_xml_Text *)self)->vtab->super.super.unref ((GdomeNode *)self, exc); + ((Gdome_xml_Text *)self)->vtab->super.super.unref ((xmlNode *)self, exc); } /** * gdome_t_query_interface: @@ -5514,7 +5514,7 @@ gdome_t_query_interface (GdomeText *self return NULL; } *exc = 0; - return ((Gdome_xml_Text *)self)->vtab->super.super.query_interface ((GdomeNode *)self, interface, exc); + return ((Gdome_xml_Text *)self)->vtab->super.super.query_interface ((xmlNode *)self, interface, exc); } /** * gdome_t_appendChild: @@ -5535,8 +5535,8 @@ gdome_t_query_interface (GdomeText *self * %GDOME_NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly. * Returns: the node added. */ -GdomeNode * -gdome_t_appendChild (GdomeText *self, GdomeNode *newChild, GdomeException *exc) +xmlNode * +gdome_t_appendChild (GdomeText *self, xmlNode *newChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -5547,7 +5547,7 @@ gdome_t_appendChild (GdomeText *self, Gd return NULL; } *exc = 0; - return ((Gdome_xml_Text *)self)->vtab->super.super.appendChild ((GdomeNode *)self, newChild, exc); + return ((Gdome_xml_Text *)self)->vtab->super.super.appendChild ((xmlNode *)self, newChild, exc); } /** * gdome_t_cloneNode: @@ -5567,7 +5567,7 @@ gdome_t_appendChild (GdomeText *self, Gd * supported. * Returns: the duplicate node. */ -GdomeNode * +xmlNode * gdome_t_cloneNode (GdomeText *self, GdomeBoolean deep, GdomeException *exc) { if (self == NULL) { @@ -5579,7 +5579,7 @@ gdome_t_cloneNode (GdomeText *self, Gdom return NULL; } *exc = 0; - return ((Gdome_xml_Text *)self)->vtab->super.super.cloneNode ((GdomeNode *)self, deep, exc); + return ((Gdome_xml_Text *)self)->vtab->super.super.cloneNode ((xmlNode *)self, deep, exc); } /** * gdome_t_hasAttributes: @@ -5600,7 +5600,7 @@ gdome_t_hasAttributes (GdomeText *self, return FALSE; } *exc = 0; - return ((Gdome_xml_Text *)self)->vtab->super.super.hasAttributes ((GdomeNode *)self, exc); + return ((Gdome_xml_Text *)self)->vtab->super.super.hasAttributes ((xmlNode *)self, exc); } /** * gdome_t_hasChildNodes: @@ -5621,7 +5621,7 @@ gdome_t_hasChildNodes (GdomeText *self, return FALSE; } *exc = 0; - return ((Gdome_xml_Text *)self)->vtab->super.super.hasChildNodes ((GdomeNode *)self, exc); + return ((Gdome_xml_Text *)self)->vtab->super.super.hasChildNodes ((xmlNode *)self, exc); } /** * gdome_t_insertBefore: @@ -5646,8 +5646,8 @@ gdome_t_hasChildNodes (GdomeText *self, * %GDOME_NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly. * Returns: the node being inserted. */ -GdomeNode * -gdome_t_insertBefore (GdomeText *self, GdomeNode *newChild, GdomeNode *refChild, GdomeException *exc) +xmlNode * +gdome_t_insertBefore (GdomeText *self, xmlNode *newChild, xmlNode *refChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -5658,7 +5658,7 @@ gdome_t_insertBefore (GdomeText *self, G return NULL; } *exc = 0; - return ((Gdome_xml_Text *)self)->vtab->super.super.insertBefore ((GdomeNode *)self, newChild, refChild, exc); + return ((Gdome_xml_Text *)self)->vtab->super.super.insertBefore ((xmlNode *)self, newChild, refChild, exc); } /** * gdome_t_isSupported: @@ -5687,7 +5687,7 @@ gdome_t_isSupported (GdomeText *self, Gd return FALSE; } *exc = 0; - return ((Gdome_xml_Text *)self)->vtab->super.super.isSupported ((GdomeNode *)self, feature, version, exc); + return ((Gdome_xml_Text *)self)->vtab->super.super.isSupported ((xmlNode *)self, feature, version, exc); } /** * gdome_t_normalize: @@ -5712,7 +5712,7 @@ gdome_t_normalize (GdomeText *self, Gdom return; } *exc = 0; - ((Gdome_xml_Text *)self)->vtab->super.super.normalize ((GdomeNode *)self, exc); + ((Gdome_xml_Text *)self)->vtab->super.super.normalize ((xmlNode *)self, exc); } /** * gdome_t_removeChild: @@ -5727,8 +5727,8 @@ gdome_t_normalize (GdomeText *self, Gdom * %GDOME_NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly. * Returns: the node removed. */ -GdomeNode * -gdome_t_removeChild (GdomeText *self, GdomeNode *oldChild, GdomeException *exc) +xmlNode * +gdome_t_removeChild (GdomeText *self, xmlNode *oldChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -5739,7 +5739,7 @@ gdome_t_removeChild (GdomeText *self, Gd return NULL; } *exc = 0; - return ((Gdome_xml_Text *)self)->vtab->super.super.removeChild ((GdomeNode *)self, oldChild, exc); + return ((Gdome_xml_Text *)self)->vtab->super.super.removeChild ((xmlNode *)self, oldChild, exc); } /** * gdome_t_replaceChild: @@ -5763,8 +5763,8 @@ gdome_t_removeChild (GdomeText *self, Gd * %GDOME_NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly. * Returns: the node replaced. */ -GdomeNode * -gdome_t_replaceChild (GdomeText *self, GdomeNode *newChild, GdomeNode *oldChild, GdomeException *exc) +xmlNode * +gdome_t_replaceChild (GdomeText *self, xmlNode *newChild, xmlNode *oldChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -5775,7 +5775,7 @@ gdome_t_replaceChild (GdomeText *self, G return NULL; } *exc = 0; - return ((Gdome_xml_Text *)self)->vtab->super.super.replaceChild ((GdomeNode *)self, newChild, oldChild, exc); + return ((Gdome_xml_Text *)self)->vtab->super.super.replaceChild ((xmlNode *)self, newChild, oldChild, exc); } /** * gdome_t_addEventListener: @@ -5812,7 +5812,7 @@ gdome_t_addEventListener (GdomeText *sel return; } *exc = 0; - ((Gdome_xml_Text *)self)->vtab->super.super.addEventListener ((GdomeNode *)self, type, listener, useCapture, exc); + ((Gdome_xml_Text *)self)->vtab->super.super.addEventListener ((xmlNode *)self, type, listener, useCapture, exc); } /** * gdome_t_removeEventListener: @@ -5847,7 +5847,7 @@ gdome_t_removeEventListener (GdomeText * return; } *exc = 0; - ((Gdome_xml_Text *)self)->vtab->super.super.removeEventListener ((GdomeNode *)self, type, listener, useCapture, exc); + ((Gdome_xml_Text *)self)->vtab->super.super.removeEventListener ((xmlNode *)self, type, listener, useCapture, exc); } /** * gdome_t_dispatchEvent: @@ -5880,7 +5880,7 @@ gdome_t_dispatchEvent (GdomeText *self, return FALSE; } *exc = 0; - return ((Gdome_xml_Text *)self)->vtab->super.super.dispatchEvent ((GdomeNode *)self, evt, exc); + return ((Gdome_xml_Text *)self)->vtab->super.super.dispatchEvent ((xmlNode *)self, evt, exc); } /** * gdome_t_subTreeDispatchEvent: @@ -5912,7 +5912,7 @@ gdome_t_subTreeDispatchEvent (GdomeText return; } *exc = 0; - ((Gdome_xml_Text *)self)->vtab->super.super.subTreeDispatchEvent ((GdomeNode *)self, evt, exc); + ((Gdome_xml_Text *)self)->vtab->super.super.subTreeDispatchEvent ((xmlNode *)self, evt, exc); } /** * gdome_t_canAppend: @@ -5924,7 +5924,7 @@ gdome_t_subTreeDispatchEvent (GdomeText * Returns: %TRUE if @newChild can be added, %FALSE otherwise. */ GdomeBoolean -gdome_t_canAppend (GdomeText *self, GdomeNode *newChild, GdomeException *exc) +gdome_t_canAppend (GdomeText *self, xmlNode *newChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -5935,7 +5935,7 @@ gdome_t_canAppend (GdomeText *self, Gdom return FALSE; } *exc = 0; - return ((Gdome_xml_Text *)self)->vtab->super.super.canAppend ((GdomeNode *)self, newChild, exc); + return ((Gdome_xml_Text *)self)->vtab->super.super.canAppend ((xmlNode *)self, newChild, exc); } /****************************************************************************** @@ -6201,7 +6201,7 @@ gdome_cds_attributes (GdomeCDATASection return NULL; } *exc = 0; - return ((Gdome_xml_CDATASection *)self)->vtab->super.super.super.attributes ((GdomeNode *)self, exc); + return ((Gdome_xml_CDATASection *)self)->vtab->super.super.super.attributes ((xmlNode *)self, exc); } /** * gdome_cds_childNodes: @@ -6225,7 +6225,7 @@ gdome_cds_childNodes (GdomeCDATASection return NULL; } *exc = 0; - return ((Gdome_xml_CDATASection *)self)->vtab->super.super.super.childNodes ((GdomeNode *)self, exc); + return ((Gdome_xml_CDATASection *)self)->vtab->super.super.super.childNodes ((xmlNode *)self, exc); } /** * gdome_cds_firstChild: @@ -6235,7 +6235,7 @@ gdome_cds_childNodes (GdomeCDATASection * Returns: the first child of this node. If there is no such node, * this returns %NULL. */ -GdomeNode * +xmlNode * gdome_cds_firstChild (GdomeCDATASection *self, GdomeException *exc) { if (self == NULL) { @@ -6247,7 +6247,7 @@ gdome_cds_firstChild (GdomeCDATASection return NULL; } *exc = 0; - return ((Gdome_xml_CDATASection *)self)->vtab->super.super.super.firstChild ((GdomeNode *)self, exc); + return ((Gdome_xml_CDATASection *)self)->vtab->super.super.super.firstChild ((xmlNode *)self, exc); } /** * gdome_cds_lastChild: @@ -6257,7 +6257,7 @@ gdome_cds_firstChild (GdomeCDATASection * Returns: the last child of this node. If there is no such node, * this returns %NULL. */ -GdomeNode * +xmlNode * gdome_cds_lastChild (GdomeCDATASection *self, GdomeException *exc) { if (self == NULL) { @@ -6269,7 +6269,7 @@ gdome_cds_lastChild (GdomeCDATASection * return NULL; } *exc = 0; - return ((Gdome_xml_CDATASection *)self)->vtab->super.super.super.lastChild ((GdomeNode *)self, exc); + return ((Gdome_xml_CDATASection *)self)->vtab->super.super.super.lastChild ((xmlNode *)self, exc); } /** * gdome_cds_localName: @@ -6293,7 +6293,7 @@ gdome_cds_localName (GdomeCDATASection * return NULL; } *exc = 0; - return ((Gdome_xml_CDATASection *)self)->vtab->super.super.super.localName ((GdomeNode *)self, exc); + return ((Gdome_xml_CDATASection *)self)->vtab->super.super.super.localName ((xmlNode *)self, exc); } /** * gdome_cds_namespaceURI: @@ -6317,7 +6317,7 @@ gdome_cds_namespaceURI (GdomeCDATASectio return NULL; } *exc = 0; - return ((Gdome_xml_CDATASection *)self)->vtab->super.super.super.namespaceURI ((GdomeNode *)self, exc); + return ((Gdome_xml_CDATASection *)self)->vtab->super.super.super.namespaceURI ((xmlNode *)self, exc); } /** * gdome_cds_nextSibling: @@ -6327,7 +6327,7 @@ gdome_cds_namespaceURI (GdomeCDATASectio * Returns: the node immediately following this node. If there is no such * node, this returns %NULL. */ -GdomeNode * +xmlNode * gdome_cds_nextSibling (GdomeCDATASection *self, GdomeException *exc) { if (self == NULL) { @@ -6339,7 +6339,7 @@ gdome_cds_nextSibling (GdomeCDATASection return NULL; } *exc = 0; - return ((Gdome_xml_CDATASection *)self)->vtab->super.super.super.nextSibling ((GdomeNode *)self, exc); + return ((Gdome_xml_CDATASection *)self)->vtab->super.super.super.nextSibling ((xmlNode *)self, exc); } /** * gdome_cds_nodeName: @@ -6360,7 +6360,7 @@ gdome_cds_nodeName (GdomeCDATASection *s return NULL; } *exc = 0; - return ((Gdome_xml_CDATASection *)self)->vtab->super.super.super.nodeName ((GdomeNode *)self, exc); + return ((Gdome_xml_CDATASection *)self)->vtab->super.super.super.nodeName ((xmlNode *)self, exc); } /** * gdome_cds_nodeType: @@ -6382,7 +6382,7 @@ gdome_cds_nodeType (GdomeCDATASection *s return 0; } *exc = 0; - return ((Gdome_xml_CDATASection *)self)->vtab->super.super.super.nodeType ((GdomeNode *)self, exc); + return ((Gdome_xml_CDATASection *)self)->vtab->super.super.super.nodeType ((xmlNode *)self, exc); } /** * gdome_cds_nodeValue: @@ -6403,7 +6403,7 @@ gdome_cds_nodeValue (GdomeCDATASection * return NULL; } *exc = 0; - return ((Gdome_xml_CDATASection *)self)->vtab->super.super.super.nodeValue ((GdomeNode *)self, exc); + return ((Gdome_xml_CDATASection *)self)->vtab->super.super.super.nodeValue ((xmlNode *)self, exc); } /** * gdome_cds_set_nodeValue: @@ -6427,7 +6427,7 @@ gdome_cds_set_nodeValue (GdomeCDATASecti return; } *exc = 0; - ((Gdome_xml_CDATASection *)self)->vtab->super.super.super.set_nodeValue ((GdomeNode *)self, nodeValue, exc); + ((Gdome_xml_CDATASection *)self)->vtab->super.super.super.set_nodeValue ((xmlNode *)self, nodeValue, exc); } /** * gdome_cds_ownerDocument: @@ -6450,7 +6450,7 @@ gdome_cds_ownerDocument (GdomeCDATASecti return NULL; } *exc = 0; - return ((Gdome_xml_CDATASection *)self)->vtab->super.super.super.ownerDocument ((GdomeNode *)self, exc); + return ((Gdome_xml_CDATASection *)self)->vtab->super.super.super.ownerDocument ((xmlNode *)self, exc); } /** * gdome_cds_parentNode: @@ -6462,7 +6462,7 @@ gdome_cds_ownerDocument (GdomeCDATASecti * if a node has just been created and not yet added to the tree, or if it has * been removed from the tree, this is %NULL. */ -GdomeNode * +xmlNode * gdome_cds_parentNode (GdomeCDATASection *self, GdomeException *exc) { if (self == NULL) { @@ -6474,7 +6474,7 @@ gdome_cds_parentNode (GdomeCDATASection return NULL; } *exc = 0; - return ((Gdome_xml_CDATASection *)self)->vtab->super.super.super.parentNode ((GdomeNode *)self, exc); + return ((Gdome_xml_CDATASection *)self)->vtab->super.super.super.parentNode ((xmlNode *)self, exc); } /** * gdome_cds_prefix: @@ -6498,7 +6498,7 @@ gdome_cds_prefix (GdomeCDATASection *sel return NULL; } *exc = 0; - return ((Gdome_xml_CDATASection *)self)->vtab->super.super.super.prefix ((GdomeNode *)self, exc); + return ((Gdome_xml_CDATASection *)self)->vtab->super.super.super.prefix ((xmlNode *)self, exc); } /** * gdome_cds_set_prefix: @@ -6529,7 +6529,7 @@ gdome_cds_set_prefix (GdomeCDATASection return; } *exc = 0; - ((Gdome_xml_CDATASection *)self)->vtab->super.super.super.set_prefix ((GdomeNode *)self, prefix, exc); + ((Gdome_xml_CDATASection *)self)->vtab->super.super.super.set_prefix ((xmlNode *)self, prefix, exc); } /** * gdome_cds_previousSibling: @@ -6539,7 +6539,7 @@ gdome_cds_set_prefix (GdomeCDATASection * Returns: the node immediately preceding this node. If there is no such * node, this returns %NULL. */ -GdomeNode * +xmlNode * gdome_cds_previousSibling (GdomeCDATASection *self, GdomeException *exc) { if (self == NULL) { @@ -6551,7 +6551,7 @@ gdome_cds_previousSibling (GdomeCDATASec return NULL; } *exc = 0; - return ((Gdome_xml_CDATASection *)self)->vtab->super.super.super.previousSibling ((GdomeNode *)self, exc); + return ((Gdome_xml_CDATASection *)self)->vtab->super.super.super.previousSibling ((xmlNode *)self, exc); } /** * gdome_cds_ref: @@ -6572,7 +6572,7 @@ gdome_cds_ref (GdomeCDATASection *self, return; } *exc = 0; - ((Gdome_xml_CDATASection *)self)->vtab->super.super.super.ref ((GdomeNode *)self, exc); + ((Gdome_xml_CDATASection *)self)->vtab->super.super.super.ref ((xmlNode *)self, exc); } /** * gdome_cds_unref: @@ -6602,7 +6602,7 @@ gdome_cds_unref (GdomeCDATASection *self } return; } - ((Gdome_xml_CDATASection *)self)->vtab->super.super.super.unref ((GdomeNode *)self, exc); + ((Gdome_xml_CDATASection *)self)->vtab->super.super.super.unref ((xmlNode *)self, exc); } /** * gdome_cds_query_interface: @@ -6625,7 +6625,7 @@ gdome_cds_query_interface (GdomeCDATASec return NULL; } *exc = 0; - return ((Gdome_xml_CDATASection *)self)->vtab->super.super.super.query_interface ((GdomeNode *)self, interface, exc); + return ((Gdome_xml_CDATASection *)self)->vtab->super.super.super.query_interface ((xmlNode *)self, interface, exc); } /** * gdome_cds_appendChild: @@ -6646,8 +6646,8 @@ gdome_cds_query_interface (GdomeCDATASec * %GDOME_NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly. * Returns: the node added. */ -GdomeNode * -gdome_cds_appendChild (GdomeCDATASection *self, GdomeNode *newChild, GdomeException *exc) +xmlNode * +gdome_cds_appendChild (GdomeCDATASection *self, xmlNode *newChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -6658,7 +6658,7 @@ gdome_cds_appendChild (GdomeCDATASection return NULL; } *exc = 0; - return ((Gdome_xml_CDATASection *)self)->vtab->super.super.super.appendChild ((GdomeNode *)self, newChild, exc); + return ((Gdome_xml_CDATASection *)self)->vtab->super.super.super.appendChild ((xmlNode *)self, newChild, exc); } /** * gdome_cds_cloneNode: @@ -6678,7 +6678,7 @@ gdome_cds_appendChild (GdomeCDATASection * supported. * Returns: the duplicate node. */ -GdomeNode * +xmlNode * gdome_cds_cloneNode (GdomeCDATASection *self, GdomeBoolean deep, GdomeException *exc) { if (self == NULL) { @@ -6690,7 +6690,7 @@ gdome_cds_cloneNode (GdomeCDATASection * return NULL; } *exc = 0; - return ((Gdome_xml_CDATASection *)self)->vtab->super.super.super.cloneNode ((GdomeNode *)self, deep, exc); + return ((Gdome_xml_CDATASection *)self)->vtab->super.super.super.cloneNode ((xmlNode *)self, deep, exc); } /** * gdome_cds_hasAttributes: @@ -6711,7 +6711,7 @@ gdome_cds_hasAttributes (GdomeCDATASecti return FALSE; } *exc = 0; - return ((Gdome_xml_CDATASection *)self)->vtab->super.super.super.hasAttributes ((GdomeNode *)self, exc); + return ((Gdome_xml_CDATASection *)self)->vtab->super.super.super.hasAttributes ((xmlNode *)self, exc); } /** * gdome_cds_hasChildNodes: @@ -6732,7 +6732,7 @@ gdome_cds_hasChildNodes (GdomeCDATASecti return FALSE; } *exc = 0; - return ((Gdome_xml_CDATASection *)self)->vtab->super.super.super.hasChildNodes ((GdomeNode *)self, exc); + return ((Gdome_xml_CDATASection *)self)->vtab->super.super.super.hasChildNodes ((xmlNode *)self, exc); } /** * gdome_cds_insertBefore: @@ -6757,8 +6757,8 @@ gdome_cds_hasChildNodes (GdomeCDATASecti * %GDOME_NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly. * Returns: the node being inserted. */ -GdomeNode * -gdome_cds_insertBefore (GdomeCDATASection *self, GdomeNode *newChild, GdomeNode *refChild, GdomeException *exc) +xmlNode * +gdome_cds_insertBefore (GdomeCDATASection *self, xmlNode *newChild, xmlNode *refChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -6769,7 +6769,7 @@ gdome_cds_insertBefore (GdomeCDATASectio return NULL; } *exc = 0; - return ((Gdome_xml_CDATASection *)self)->vtab->super.super.super.insertBefore ((GdomeNode *)self, newChild, refChild, exc); + return ((Gdome_xml_CDATASection *)self)->vtab->super.super.super.insertBefore ((xmlNode *)self, newChild, refChild, exc); } /** * gdome_cds_isSupported: @@ -6798,7 +6798,7 @@ gdome_cds_isSupported (GdomeCDATASection return FALSE; } *exc = 0; - return ((Gdome_xml_CDATASection *)self)->vtab->super.super.super.isSupported ((GdomeNode *)self, feature, version, exc); + return ((Gdome_xml_CDATASection *)self)->vtab->super.super.super.isSupported ((xmlNode *)self, feature, version, exc); } /** * gdome_cds_normalize: @@ -6823,7 +6823,7 @@ gdome_cds_normalize (GdomeCDATASection * return; } *exc = 0; - ((Gdome_xml_CDATASection *)self)->vtab->super.super.super.normalize ((GdomeNode *)self, exc); + ((Gdome_xml_CDATASection *)self)->vtab->super.super.super.normalize ((xmlNode *)self, exc); } /** * gdome_cds_removeChild: @@ -6838,8 +6838,8 @@ gdome_cds_normalize (GdomeCDATASection * * %GDOME_NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly. * Returns: the node removed. */ -GdomeNode * -gdome_cds_removeChild (GdomeCDATASection *self, GdomeNode *oldChild, GdomeException *exc) +xmlNode * +gdome_cds_removeChild (GdomeCDATASection *self, xmlNode *oldChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -6850,7 +6850,7 @@ gdome_cds_removeChild (GdomeCDATASection return NULL; } *exc = 0; - return ((Gdome_xml_CDATASection *)self)->vtab->super.super.super.removeChild ((GdomeNode *)self, oldChild, exc); + return ((Gdome_xml_CDATASection *)self)->vtab->super.super.super.removeChild ((xmlNode *)self, oldChild, exc); } /** * gdome_cds_replaceChild: @@ -6874,8 +6874,8 @@ gdome_cds_removeChild (GdomeCDATASection * %GDOME_NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly. * Returns: the node replaced. */ -GdomeNode * -gdome_cds_replaceChild (GdomeCDATASection *self, GdomeNode *newChild, GdomeNode *oldChild, GdomeException *exc) +xmlNode * +gdome_cds_replaceChild (GdomeCDATASection *self, xmlNode *newChild, xmlNode *oldChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -6886,7 +6886,7 @@ gdome_cds_replaceChild (GdomeCDATASectio return NULL; } *exc = 0; - return ((Gdome_xml_CDATASection *)self)->vtab->super.super.super.replaceChild ((GdomeNode *)self, newChild, oldChild, exc); + return ((Gdome_xml_CDATASection *)self)->vtab->super.super.super.replaceChild ((xmlNode *)self, newChild, oldChild, exc); } /** * gdome_cds_addEventListener: @@ -6923,7 +6923,7 @@ gdome_cds_addEventListener (GdomeCDATASe return; } *exc = 0; - ((Gdome_xml_CDATASection *)self)->vtab->super.super.super.addEventListener ((GdomeNode *)self, type, listener, useCapture, exc); + ((Gdome_xml_CDATASection *)self)->vtab->super.super.super.addEventListener ((xmlNode *)self, type, listener, useCapture, exc); } /** * gdome_cds_removeEventListener: @@ -6958,7 +6958,7 @@ gdome_cds_removeEventListener (GdomeCDAT return; } *exc = 0; - ((Gdome_xml_CDATASection *)self)->vtab->super.super.super.removeEventListener ((GdomeNode *)self, type, listener, useCapture, exc); + ((Gdome_xml_CDATASection *)self)->vtab->super.super.super.removeEventListener ((xmlNode *)self, type, listener, useCapture, exc); } /** * gdome_cds_dispatchEvent: @@ -6991,7 +6991,7 @@ gdome_cds_dispatchEvent (GdomeCDATASecti return FALSE; } *exc = 0; - return ((Gdome_xml_CDATASection *)self)->vtab->super.super.super.dispatchEvent ((GdomeNode *)self, evt, exc); + return ((Gdome_xml_CDATASection *)self)->vtab->super.super.super.dispatchEvent ((xmlNode *)self, evt, exc); } /** * gdome_cds_subTreeDispatchEvent: @@ -7023,7 +7023,7 @@ gdome_cds_subTreeDispatchEvent (GdomeCDA return; } *exc = 0; - ((Gdome_xml_CDATASection *)self)->vtab->super.super.super.subTreeDispatchEvent ((GdomeNode *)self, evt, exc); + ((Gdome_xml_CDATASection *)self)->vtab->super.super.super.subTreeDispatchEvent ((xmlNode *)self, evt, exc); } /** * gdome_cds_canAppend: @@ -7035,7 +7035,7 @@ gdome_cds_subTreeDispatchEvent (GdomeCDA * Returns: %TRUE if @newChild can be added, %FALSE otherwise. */ GdomeBoolean -gdome_cds_canAppend (GdomeCDATASection *self, GdomeNode *newChild, GdomeException *exc) +gdome_cds_canAppend (GdomeCDATASection *self, xmlNode *newChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -7046,7 +7046,7 @@ gdome_cds_canAppend (GdomeCDATASection * return FALSE; } *exc = 0; - return ((Gdome_xml_CDATASection *)self)->vtab->super.super.super.canAppend ((GdomeNode *)self, newChild, exc); + return ((Gdome_xml_CDATASection *)self)->vtab->super.super.super.canAppend ((xmlNode *)self, newChild, exc); } /****************************************************************************** @@ -7279,7 +7279,7 @@ gdome_c_attributes (GdomeComment *self, return NULL; } *exc = 0; - return ((Gdome_xml_Comment *)self)->vtab->super.super.attributes ((GdomeNode *)self, exc); + return ((Gdome_xml_Comment *)self)->vtab->super.super.attributes ((xmlNode *)self, exc); } /** * gdome_c_childNodes: @@ -7303,7 +7303,7 @@ gdome_c_childNodes (GdomeComment *self, return NULL; } *exc = 0; - return ((Gdome_xml_Comment *)self)->vtab->super.super.childNodes ((GdomeNode *)self, exc); + return ((Gdome_xml_Comment *)self)->vtab->super.super.childNodes ((xmlNode *)self, exc); } /** * gdome_c_firstChild: @@ -7313,7 +7313,7 @@ gdome_c_childNodes (GdomeComment *self, * Returns: the first child of this node. If there is no such node, * this returns %NULL. */ -GdomeNode * +xmlNode * gdome_c_firstChild (GdomeComment *self, GdomeException *exc) { if (self == NULL) { @@ -7325,7 +7325,7 @@ gdome_c_firstChild (GdomeComment *self, return NULL; } *exc = 0; - return ((Gdome_xml_Comment *)self)->vtab->super.super.firstChild ((GdomeNode *)self, exc); + return ((Gdome_xml_Comment *)self)->vtab->super.super.firstChild ((xmlNode *)self, exc); } /** * gdome_c_lastChild: @@ -7335,7 +7335,7 @@ gdome_c_firstChild (GdomeComment *self, * Returns: the last child of this node. If there is no such node, * this returns %NULL. */ -GdomeNode * +xmlNode * gdome_c_lastChild (GdomeComment *self, GdomeException *exc) { if (self == NULL) { @@ -7347,7 +7347,7 @@ gdome_c_lastChild (GdomeComment *self, G return NULL; } *exc = 0; - return ((Gdome_xml_Comment *)self)->vtab->super.super.lastChild ((GdomeNode *)self, exc); + return ((Gdome_xml_Comment *)self)->vtab->super.super.lastChild ((xmlNode *)self, exc); } /** * gdome_c_localName: @@ -7371,7 +7371,7 @@ gdome_c_localName (GdomeComment *self, G return NULL; } *exc = 0; - return ((Gdome_xml_Comment *)self)->vtab->super.super.localName ((GdomeNode *)self, exc); + return ((Gdome_xml_Comment *)self)->vtab->super.super.localName ((xmlNode *)self, exc); } /** * gdome_c_namespaceURI: @@ -7395,7 +7395,7 @@ gdome_c_namespaceURI (GdomeComment *self return NULL; } *exc = 0; - return ((Gdome_xml_Comment *)self)->vtab->super.super.namespaceURI ((GdomeNode *)self, exc); + return ((Gdome_xml_Comment *)self)->vtab->super.super.namespaceURI ((xmlNode *)self, exc); } /** * gdome_c_nextSibling: @@ -7405,7 +7405,7 @@ gdome_c_namespaceURI (GdomeComment *self * Returns: the node immediately following this node. If there is no such * node, this returns %NULL. */ -GdomeNode * +xmlNode * gdome_c_nextSibling (GdomeComment *self, GdomeException *exc) { if (self == NULL) { @@ -7417,7 +7417,7 @@ gdome_c_nextSibling (GdomeComment *self, return NULL; } *exc = 0; - return ((Gdome_xml_Comment *)self)->vtab->super.super.nextSibling ((GdomeNode *)self, exc); + return ((Gdome_xml_Comment *)self)->vtab->super.super.nextSibling ((xmlNode *)self, exc); } /** * gdome_c_nodeName: @@ -7438,7 +7438,7 @@ gdome_c_nodeName (GdomeComment *self, Gd return NULL; } *exc = 0; - return ((Gdome_xml_Comment *)self)->vtab->super.super.nodeName ((GdomeNode *)self, exc); + return ((Gdome_xml_Comment *)self)->vtab->super.super.nodeName ((xmlNode *)self, exc); } /** * gdome_c_nodeType: @@ -7460,7 +7460,7 @@ gdome_c_nodeType (GdomeComment *self, Gd return 0; } *exc = 0; - return ((Gdome_xml_Comment *)self)->vtab->super.super.nodeType ((GdomeNode *)self, exc); + return ((Gdome_xml_Comment *)self)->vtab->super.super.nodeType ((xmlNode *)self, exc); } /** * gdome_c_nodeValue: @@ -7481,7 +7481,7 @@ gdome_c_nodeValue (GdomeComment *self, G return NULL; } *exc = 0; - return ((Gdome_xml_Comment *)self)->vtab->super.super.nodeValue ((GdomeNode *)self, exc); + return ((Gdome_xml_Comment *)self)->vtab->super.super.nodeValue ((xmlNode *)self, exc); } /** * gdome_c_set_nodeValue: @@ -7505,7 +7505,7 @@ gdome_c_set_nodeValue (GdomeComment *sel return; } *exc = 0; - ((Gdome_xml_Comment *)self)->vtab->super.super.set_nodeValue ((GdomeNode *)self, nodeValue, exc); + ((Gdome_xml_Comment *)self)->vtab->super.super.set_nodeValue ((xmlNode *)self, nodeValue, exc); } /** * gdome_c_ownerDocument: @@ -7528,7 +7528,7 @@ gdome_c_ownerDocument (GdomeComment *sel return NULL; } *exc = 0; - return ((Gdome_xml_Comment *)self)->vtab->super.super.ownerDocument ((GdomeNode *)self, exc); + return ((Gdome_xml_Comment *)self)->vtab->super.super.ownerDocument ((xmlNode *)self, exc); } /** * gdome_c_parentNode: @@ -7540,7 +7540,7 @@ gdome_c_ownerDocument (GdomeComment *sel * if a node has just been created and not yet added to the tree, or if it has * been removed from the tree, this is %NULL. */ -GdomeNode * +xmlNode * gdome_c_parentNode (GdomeComment *self, GdomeException *exc) { if (self == NULL) { @@ -7552,7 +7552,7 @@ gdome_c_parentNode (GdomeComment *self, return NULL; } *exc = 0; - return ((Gdome_xml_Comment *)self)->vtab->super.super.parentNode ((GdomeNode *)self, exc); + return ((Gdome_xml_Comment *)self)->vtab->super.super.parentNode ((xmlNode *)self, exc); } /** * gdome_c_prefix: @@ -7576,7 +7576,7 @@ gdome_c_prefix (GdomeComment *self, Gdom return NULL; } *exc = 0; - return ((Gdome_xml_Comment *)self)->vtab->super.super.prefix ((GdomeNode *)self, exc); + return ((Gdome_xml_Comment *)self)->vtab->super.super.prefix ((xmlNode *)self, exc); } /** * gdome_c_set_prefix: @@ -7607,7 +7607,7 @@ gdome_c_set_prefix (GdomeComment *self, return; } *exc = 0; - ((Gdome_xml_Comment *)self)->vtab->super.super.set_prefix ((GdomeNode *)self, prefix, exc); + ((Gdome_xml_Comment *)self)->vtab->super.super.set_prefix ((xmlNode *)self, prefix, exc); } /** * gdome_c_previousSibling: @@ -7617,7 +7617,7 @@ gdome_c_set_prefix (GdomeComment *self, * Returns: the node immediately preceding this node. If there is no such * node, this returns %NULL. */ -GdomeNode * +xmlNode * gdome_c_previousSibling (GdomeComment *self, GdomeException *exc) { if (self == NULL) { @@ -7629,7 +7629,7 @@ gdome_c_previousSibling (GdomeComment *s return NULL; } *exc = 0; - return ((Gdome_xml_Comment *)self)->vtab->super.super.previousSibling ((GdomeNode *)self, exc); + return ((Gdome_xml_Comment *)self)->vtab->super.super.previousSibling ((xmlNode *)self, exc); } /** * gdome_c_ref: @@ -7650,7 +7650,7 @@ gdome_c_ref (GdomeComment *self, GdomeEx return; } *exc = 0; - ((Gdome_xml_Comment *)self)->vtab->super.super.ref ((GdomeNode *)self, exc); + ((Gdome_xml_Comment *)self)->vtab->super.super.ref ((xmlNode *)self, exc); } /** * gdome_c_unref: @@ -7680,7 +7680,7 @@ gdome_c_unref (GdomeComment *self, Gdome } return; } - ((Gdome_xml_Comment *)self)->vtab->super.super.unref ((GdomeNode *)self, exc); + ((Gdome_xml_Comment *)self)->vtab->super.super.unref ((xmlNode *)self, exc); } /** * gdome_c_query_interface: @@ -7703,7 +7703,7 @@ gdome_c_query_interface (GdomeComment *s return NULL; } *exc = 0; - return ((Gdome_xml_Comment *)self)->vtab->super.super.query_interface ((GdomeNode *)self, interface, exc); + return ((Gdome_xml_Comment *)self)->vtab->super.super.query_interface ((xmlNode *)self, interface, exc); } /** * gdome_c_appendChild: @@ -7724,8 +7724,8 @@ gdome_c_query_interface (GdomeComment *s * %GDOME_NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly. * Returns: the node added. */ -GdomeNode * -gdome_c_appendChild (GdomeComment *self, GdomeNode *newChild, GdomeException *exc) +xmlNode * +gdome_c_appendChild (GdomeComment *self, xmlNode *newChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -7736,7 +7736,7 @@ gdome_c_appendChild (GdomeComment *self, return NULL; } *exc = 0; - return ((Gdome_xml_Comment *)self)->vtab->super.super.appendChild ((GdomeNode *)self, newChild, exc); + return ((Gdome_xml_Comment *)self)->vtab->super.super.appendChild ((xmlNode *)self, newChild, exc); } /** * gdome_c_cloneNode: @@ -7756,7 +7756,7 @@ gdome_c_appendChild (GdomeComment *self, * supported. * Returns: the duplicate node. */ -GdomeNode * +xmlNode * gdome_c_cloneNode (GdomeComment *self, GdomeBoolean deep, GdomeException *exc) { if (self == NULL) { @@ -7768,7 +7768,7 @@ gdome_c_cloneNode (GdomeComment *self, G return NULL; } *exc = 0; - return ((Gdome_xml_Comment *)self)->vtab->super.super.cloneNode ((GdomeNode *)self, deep, exc); + return ((Gdome_xml_Comment *)self)->vtab->super.super.cloneNode ((xmlNode *)self, deep, exc); } /** * gdome_c_hasAttributes: @@ -7789,7 +7789,7 @@ gdome_c_hasAttributes (GdomeComment *sel return FALSE; } *exc = 0; - return ((Gdome_xml_Comment *)self)->vtab->super.super.hasAttributes ((GdomeNode *)self, exc); + return ((Gdome_xml_Comment *)self)->vtab->super.super.hasAttributes ((xmlNode *)self, exc); } /** * gdome_c_hasChildNodes: @@ -7810,7 +7810,7 @@ gdome_c_hasChildNodes (GdomeComment *sel return FALSE; } *exc = 0; - return ((Gdome_xml_Comment *)self)->vtab->super.super.hasChildNodes ((GdomeNode *)self, exc); + return ((Gdome_xml_Comment *)self)->vtab->super.super.hasChildNodes ((xmlNode *)self, exc); } /** * gdome_c_insertBefore: @@ -7835,8 +7835,8 @@ gdome_c_hasChildNodes (GdomeComment *sel * %GDOME_NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly. * Returns: the node being inserted. */ -GdomeNode * -gdome_c_insertBefore (GdomeComment *self, GdomeNode *newChild, GdomeNode *refChild, GdomeException *exc) +xmlNode * +gdome_c_insertBefore (GdomeComment *self, xmlNode *newChild, xmlNode *refChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -7847,7 +7847,7 @@ gdome_c_insertBefore (GdomeComment *self return NULL; } *exc = 0; - return ((Gdome_xml_Comment *)self)->vtab->super.super.insertBefore ((GdomeNode *)self, newChild, refChild, exc); + return ((Gdome_xml_Comment *)self)->vtab->super.super.insertBefore ((xmlNode *)self, newChild, refChild, exc); } /** * gdome_c_isSupported: @@ -7876,7 +7876,7 @@ gdome_c_isSupported (GdomeComment *self, return FALSE; } *exc = 0; - return ((Gdome_xml_Comment *)self)->vtab->super.super.isSupported ((GdomeNode *)self, feature, version, exc); + return ((Gdome_xml_Comment *)self)->vtab->super.super.isSupported ((xmlNode *)self, feature, version, exc); } /** * gdome_c_normalize: @@ -7901,7 +7901,7 @@ gdome_c_normalize (GdomeComment *self, G return; } *exc = 0; - ((Gdome_xml_Comment *)self)->vtab->super.super.normalize ((GdomeNode *)self, exc); + ((Gdome_xml_Comment *)self)->vtab->super.super.normalize ((xmlNode *)self, exc); } /** * gdome_c_removeChild: @@ -7916,8 +7916,8 @@ gdome_c_normalize (GdomeComment *self, G * %GDOME_NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly. * Returns: the node removed. */ -GdomeNode * -gdome_c_removeChild (GdomeComment *self, GdomeNode *oldChild, GdomeException *exc) +xmlNode * +gdome_c_removeChild (GdomeComment *self, xmlNode *oldChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -7928,7 +7928,7 @@ gdome_c_removeChild (GdomeComment *self, return NULL; } *exc = 0; - return ((Gdome_xml_Comment *)self)->vtab->super.super.removeChild ((GdomeNode *)self, oldChild, exc); + return ((Gdome_xml_Comment *)self)->vtab->super.super.removeChild ((xmlNode *)self, oldChild, exc); } /** * gdome_c_replaceChild: @@ -7952,8 +7952,8 @@ gdome_c_removeChild (GdomeComment *self, * %GDOME_NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly. * Returns: the node replaced. */ -GdomeNode * -gdome_c_replaceChild (GdomeComment *self, GdomeNode *newChild, GdomeNode *oldChild, GdomeException *exc) +xmlNode * +gdome_c_replaceChild (GdomeComment *self, xmlNode *newChild, xmlNode *oldChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -7964,7 +7964,7 @@ gdome_c_replaceChild (GdomeComment *self return NULL; } *exc = 0; - return ((Gdome_xml_Comment *)self)->vtab->super.super.replaceChild ((GdomeNode *)self, newChild, oldChild, exc); + return ((Gdome_xml_Comment *)self)->vtab->super.super.replaceChild ((xmlNode *)self, newChild, oldChild, exc); } /** * gdome_c_addEventListener: @@ -8001,7 +8001,7 @@ gdome_c_addEventListener (GdomeComment * return; } *exc = 0; - ((Gdome_xml_Comment *)self)->vtab->super.super.addEventListener ((GdomeNode *)self, type, listener, useCapture, exc); + ((Gdome_xml_Comment *)self)->vtab->super.super.addEventListener ((xmlNode *)self, type, listener, useCapture, exc); } /** * gdome_c_removeEventListener: @@ -8036,7 +8036,7 @@ gdome_c_removeEventListener (GdomeCommen return; } *exc = 0; - ((Gdome_xml_Comment *)self)->vtab->super.super.removeEventListener ((GdomeNode *)self, type, listener, useCapture, exc); + ((Gdome_xml_Comment *)self)->vtab->super.super.removeEventListener ((xmlNode *)self, type, listener, useCapture, exc); } /** * gdome_c_dispatchEvent: @@ -8069,7 +8069,7 @@ gdome_c_dispatchEvent (GdomeComment *sel return FALSE; } *exc = 0; - return ((Gdome_xml_Comment *)self)->vtab->super.super.dispatchEvent ((GdomeNode *)self, evt, exc); + return ((Gdome_xml_Comment *)self)->vtab->super.super.dispatchEvent ((xmlNode *)self, evt, exc); } /** * gdome_c_subTreeDispatchEvent: @@ -8101,7 +8101,7 @@ gdome_c_subTreeDispatchEvent (GdomeComme return; } *exc = 0; - ((Gdome_xml_Comment *)self)->vtab->super.super.subTreeDispatchEvent ((GdomeNode *)self, evt, exc); + ((Gdome_xml_Comment *)self)->vtab->super.super.subTreeDispatchEvent ((xmlNode *)self, evt, exc); } /** * gdome_c_canAppend: @@ -8113,7 +8113,7 @@ gdome_c_subTreeDispatchEvent (GdomeComme * Returns: %TRUE if @newChild can be added, %FALSE otherwise. */ GdomeBoolean -gdome_c_canAppend (GdomeComment *self, GdomeNode *newChild, GdomeException *exc) +gdome_c_canAppend (GdomeComment *self, xmlNode *newChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -8124,7 +8124,7 @@ gdome_c_canAppend (GdomeComment *self, G return FALSE; } *exc = 0; - return ((Gdome_xml_Comment *)self)->vtab->super.super.canAppend ((GdomeNode *)self, newChild, exc); + return ((Gdome_xml_Comment *)self)->vtab->super.super.canAppend ((xmlNode *)self, newChild, exc); } /****************************************************************************** @@ -8260,7 +8260,7 @@ gdome_a_attributes (GdomeAttr *self, Gdo return NULL; } *exc = 0; - return ((Gdome_xml_Attr *)self)->vtab->super.attributes ((GdomeNode *)self, exc); + return ((Gdome_xml_Attr *)self)->vtab->super.attributes ((xmlNode *)self, exc); } /** * gdome_a_childNodes: @@ -8284,7 +8284,7 @@ gdome_a_childNodes (GdomeAttr *self, Gdo return NULL; } *exc = 0; - return ((Gdome_xml_Attr *)self)->vtab->super.childNodes ((GdomeNode *)self, exc); + return ((Gdome_xml_Attr *)self)->vtab->super.childNodes ((xmlNode *)self, exc); } /** * gdome_a_firstChild: @@ -8294,7 +8294,7 @@ gdome_a_childNodes (GdomeAttr *self, Gdo * Returns: the first child of this node. If there is no such node, * this returns %NULL. */ -GdomeNode * +xmlNode * gdome_a_firstChild (GdomeAttr *self, GdomeException *exc) { if (self == NULL) { @@ -8306,7 +8306,7 @@ gdome_a_firstChild (GdomeAttr *self, Gdo return NULL; } *exc = 0; - return ((Gdome_xml_Attr *)self)->vtab->super.firstChild ((GdomeNode *)self, exc); + return ((Gdome_xml_Attr *)self)->vtab->super.firstChild ((xmlNode *)self, exc); } /** * gdome_a_lastChild: @@ -8316,7 +8316,7 @@ gdome_a_firstChild (GdomeAttr *self, Gdo * Returns: the last child of this node. If there is no such node, * this returns %NULL. */ -GdomeNode * +xmlNode * gdome_a_lastChild (GdomeAttr *self, GdomeException *exc) { if (self == NULL) { @@ -8328,7 +8328,7 @@ gdome_a_lastChild (GdomeAttr *self, Gdom return NULL; } *exc = 0; - return ((Gdome_xml_Attr *)self)->vtab->super.lastChild ((GdomeNode *)self, exc); + return ((Gdome_xml_Attr *)self)->vtab->super.lastChild ((xmlNode *)self, exc); } /** * gdome_a_localName: @@ -8352,7 +8352,7 @@ gdome_a_localName (GdomeAttr *self, Gdom return NULL; } *exc = 0; - return ((Gdome_xml_Attr *)self)->vtab->super.localName ((GdomeNode *)self, exc); + return ((Gdome_xml_Attr *)self)->vtab->super.localName ((xmlNode *)self, exc); } /** * gdome_a_namespaceURI: @@ -8376,7 +8376,7 @@ gdome_a_namespaceURI (GdomeAttr *self, G return NULL; } *exc = 0; - return ((Gdome_xml_Attr *)self)->vtab->super.namespaceURI ((GdomeNode *)self, exc); + return ((Gdome_xml_Attr *)self)->vtab->super.namespaceURI ((xmlNode *)self, exc); } /** * gdome_a_nextSibling: @@ -8386,7 +8386,7 @@ gdome_a_namespaceURI (GdomeAttr *self, G * Returns: the node immediately following this node. If there is no such * node, this returns %NULL. */ -GdomeNode * +xmlNode * gdome_a_nextSibling (GdomeAttr *self, GdomeException *exc) { if (self == NULL) { @@ -8398,7 +8398,7 @@ gdome_a_nextSibling (GdomeAttr *self, Gd return NULL; } *exc = 0; - return ((Gdome_xml_Attr *)self)->vtab->super.nextSibling ((GdomeNode *)self, exc); + return ((Gdome_xml_Attr *)self)->vtab->super.nextSibling ((xmlNode *)self, exc); } /** * gdome_a_nodeName: @@ -8419,7 +8419,7 @@ gdome_a_nodeName (GdomeAttr *self, Gdome return NULL; } *exc = 0; - return ((Gdome_xml_Attr *)self)->vtab->super.nodeName ((GdomeNode *)self, exc); + return ((Gdome_xml_Attr *)self)->vtab->super.nodeName ((xmlNode *)self, exc); } /** * gdome_a_nodeType: @@ -8441,7 +8441,7 @@ gdome_a_nodeType (GdomeAttr *self, Gdome return 0; } *exc = 0; - return ((Gdome_xml_Attr *)self)->vtab->super.nodeType ((GdomeNode *)self, exc); + return ((Gdome_xml_Attr *)self)->vtab->super.nodeType ((xmlNode *)self, exc); } /** * gdome_a_nodeValue: @@ -8462,7 +8462,7 @@ gdome_a_nodeValue (GdomeAttr *self, Gdom return NULL; } *exc = 0; - return ((Gdome_xml_Attr *)self)->vtab->super.nodeValue ((GdomeNode *)self, exc); + return ((Gdome_xml_Attr *)self)->vtab->super.nodeValue ((xmlNode *)self, exc); } /** * gdome_a_set_nodeValue: @@ -8486,7 +8486,7 @@ gdome_a_set_nodeValue (GdomeAttr *self, return; } *exc = 0; - ((Gdome_xml_Attr *)self)->vtab->super.set_nodeValue ((GdomeNode *)self, nodeValue, exc); + ((Gdome_xml_Attr *)self)->vtab->super.set_nodeValue ((xmlNode *)self, nodeValue, exc); } /** * gdome_a_ownerDocument: @@ -8509,7 +8509,7 @@ gdome_a_ownerDocument (GdomeAttr *self, return NULL; } *exc = 0; - return ((Gdome_xml_Attr *)self)->vtab->super.ownerDocument ((GdomeNode *)self, exc); + return ((Gdome_xml_Attr *)self)->vtab->super.ownerDocument ((xmlNode *)self, exc); } /** * gdome_a_parentNode: @@ -8521,7 +8521,7 @@ gdome_a_ownerDocument (GdomeAttr *self, * if a node has just been created and not yet added to the tree, or if it has * been removed from the tree, this is %NULL. */ -GdomeNode * +xmlNode * gdome_a_parentNode (GdomeAttr *self, GdomeException *exc) { if (self == NULL) { @@ -8533,7 +8533,7 @@ gdome_a_parentNode (GdomeAttr *self, Gdo return NULL; } *exc = 0; - return ((Gdome_xml_Attr *)self)->vtab->super.parentNode ((GdomeNode *)self, exc); + return ((Gdome_xml_Attr *)self)->vtab->super.parentNode ((xmlNode *)self, exc); } /** * gdome_a_prefix: @@ -8557,7 +8557,7 @@ gdome_a_prefix (GdomeAttr *self, GdomeEx return NULL; } *exc = 0; - return ((Gdome_xml_Attr *)self)->vtab->super.prefix ((GdomeNode *)self, exc); + return ((Gdome_xml_Attr *)self)->vtab->super.prefix ((xmlNode *)self, exc); } /** * gdome_a_set_prefix: @@ -8588,7 +8588,7 @@ gdome_a_set_prefix (GdomeAttr *self, Gdo return; } *exc = 0; - ((Gdome_xml_Attr *)self)->vtab->super.set_prefix ((GdomeNode *)self, prefix, exc); + ((Gdome_xml_Attr *)self)->vtab->super.set_prefix ((xmlNode *)self, prefix, exc); } /** * gdome_a_previousSibling: @@ -8598,7 +8598,7 @@ gdome_a_set_prefix (GdomeAttr *self, Gdo * Returns: the node immediately preceding this node. If there is no such * node, this returns %NULL. */ -GdomeNode * +xmlNode * gdome_a_previousSibling (GdomeAttr *self, GdomeException *exc) { if (self == NULL) { @@ -8610,7 +8610,7 @@ gdome_a_previousSibling (GdomeAttr *self return NULL; } *exc = 0; - return ((Gdome_xml_Attr *)self)->vtab->super.previousSibling ((GdomeNode *)self, exc); + return ((Gdome_xml_Attr *)self)->vtab->super.previousSibling ((xmlNode *)self, exc); } /** * gdome_a_ref: @@ -8631,7 +8631,7 @@ gdome_a_ref (GdomeAttr *self, GdomeExcep return; } *exc = 0; - ((Gdome_xml_Attr *)self)->vtab->super.ref ((GdomeNode *)self, exc); + ((Gdome_xml_Attr *)self)->vtab->super.ref ((xmlNode *)self, exc); } /** * gdome_a_unref: @@ -8661,7 +8661,7 @@ gdome_a_unref (GdomeAttr *self, GdomeExc } return; } - ((Gdome_xml_Attr *)self)->vtab->super.unref ((GdomeNode *)self, exc); + ((Gdome_xml_Attr *)self)->vtab->super.unref ((xmlNode *)self, exc); } /** * gdome_a_query_interface: @@ -8684,7 +8684,7 @@ gdome_a_query_interface (GdomeAttr *self return NULL; } *exc = 0; - return ((Gdome_xml_Attr *)self)->vtab->super.query_interface ((GdomeNode *)self, interface, exc); + return ((Gdome_xml_Attr *)self)->vtab->super.query_interface ((xmlNode *)self, interface, exc); } /** * gdome_a_appendChild: @@ -8705,8 +8705,8 @@ gdome_a_query_interface (GdomeAttr *self * %GDOME_NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly. * Returns: the node added. */ -GdomeNode * -gdome_a_appendChild (GdomeAttr *self, GdomeNode *newChild, GdomeException *exc) +xmlNode * +gdome_a_appendChild (GdomeAttr *self, xmlNode *newChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -8717,7 +8717,7 @@ gdome_a_appendChild (GdomeAttr *self, Gd return NULL; } *exc = 0; - return ((Gdome_xml_Attr *)self)->vtab->super.appendChild ((GdomeNode *)self, newChild, exc); + return ((Gdome_xml_Attr *)self)->vtab->super.appendChild ((xmlNode *)self, newChild, exc); } /** * gdome_a_cloneNode: @@ -8737,7 +8737,7 @@ gdome_a_appendChild (GdomeAttr *self, Gd * supported. * Returns: the duplicate node. */ -GdomeNode * +xmlNode * gdome_a_cloneNode (GdomeAttr *self, GdomeBoolean deep, GdomeException *exc) { if (self == NULL) { @@ -8749,7 +8749,7 @@ gdome_a_cloneNode (GdomeAttr *self, Gdom return NULL; } *exc = 0; - return ((Gdome_xml_Attr *)self)->vtab->super.cloneNode ((GdomeNode *)self, deep, exc); + return ((Gdome_xml_Attr *)self)->vtab->super.cloneNode ((xmlNode *)self, deep, exc); } /** * gdome_a_hasAttributes: @@ -8770,7 +8770,7 @@ gdome_a_hasAttributes (GdomeAttr *self, return FALSE; } *exc = 0; - return ((Gdome_xml_Attr *)self)->vtab->super.hasAttributes ((GdomeNode *)self, exc); + return ((Gdome_xml_Attr *)self)->vtab->super.hasAttributes ((xmlNode *)self, exc); } /** * gdome_a_hasChildNodes: @@ -8791,7 +8791,7 @@ gdome_a_hasChildNodes (GdomeAttr *self, return FALSE; } *exc = 0; - return ((Gdome_xml_Attr *)self)->vtab->super.hasChildNodes ((GdomeNode *)self, exc); + return ((Gdome_xml_Attr *)self)->vtab->super.hasChildNodes ((xmlNode *)self, exc); } /** * gdome_a_insertBefore: @@ -8816,8 +8816,8 @@ gdome_a_hasChildNodes (GdomeAttr *self, * %GDOME_NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly. * Returns: the node being inserted. */ -GdomeNode * -gdome_a_insertBefore (GdomeAttr *self, GdomeNode *newChild, GdomeNode *refChild, GdomeException *exc) +xmlNode * +gdome_a_insertBefore (GdomeAttr *self, xmlNode *newChild, xmlNode *refChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -8828,7 +8828,7 @@ gdome_a_insertBefore (GdomeAttr *self, G return NULL; } *exc = 0; - return ((Gdome_xml_Attr *)self)->vtab->super.insertBefore ((GdomeNode *)self, newChild, refChild, exc); + return ((Gdome_xml_Attr *)self)->vtab->super.insertBefore ((xmlNode *)self, newChild, refChild, exc); } /** * gdome_a_isSupported: @@ -8857,7 +8857,7 @@ gdome_a_isSupported (GdomeAttr *self, Gd return FALSE; } *exc = 0; - return ((Gdome_xml_Attr *)self)->vtab->super.isSupported ((GdomeNode *)self, feature, version, exc); + return ((Gdome_xml_Attr *)self)->vtab->super.isSupported ((xmlNode *)self, feature, version, exc); } /** * gdome_a_normalize: @@ -8882,7 +8882,7 @@ gdome_a_normalize (GdomeAttr *self, Gdom return; } *exc = 0; - ((Gdome_xml_Attr *)self)->vtab->super.normalize ((GdomeNode *)self, exc); + ((Gdome_xml_Attr *)self)->vtab->super.normalize ((xmlNode *)self, exc); } /** * gdome_a_removeChild: @@ -8897,8 +8897,8 @@ gdome_a_normalize (GdomeAttr *self, Gdom * %GDOME_NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly. * Returns: the node removed. */ -GdomeNode * -gdome_a_removeChild (GdomeAttr *self, GdomeNode *oldChild, GdomeException *exc) +xmlNode * +gdome_a_removeChild (GdomeAttr *self, xmlNode *oldChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -8909,7 +8909,7 @@ gdome_a_removeChild (GdomeAttr *self, Gd return NULL; } *exc = 0; - return ((Gdome_xml_Attr *)self)->vtab->super.removeChild ((GdomeNode *)self, oldChild, exc); + return ((Gdome_xml_Attr *)self)->vtab->super.removeChild ((xmlNode *)self, oldChild, exc); } /** * gdome_a_replaceChild: @@ -8933,8 +8933,8 @@ gdome_a_removeChild (GdomeAttr *self, Gd * %GDOME_NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly. * Returns: the node replaced. */ -GdomeNode * -gdome_a_replaceChild (GdomeAttr *self, GdomeNode *newChild, GdomeNode *oldChild, GdomeException *exc) +xmlNode * +gdome_a_replaceChild (GdomeAttr *self, xmlNode *newChild, xmlNode *oldChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -8945,7 +8945,7 @@ gdome_a_replaceChild (GdomeAttr *self, G return NULL; } *exc = 0; - return ((Gdome_xml_Attr *)self)->vtab->super.replaceChild ((GdomeNode *)self, newChild, oldChild, exc); + return ((Gdome_xml_Attr *)self)->vtab->super.replaceChild ((xmlNode *)self, newChild, oldChild, exc); } /** * gdome_a_addEventListener: @@ -8982,7 +8982,7 @@ gdome_a_addEventListener (GdomeAttr *sel return; } *exc = 0; - ((Gdome_xml_Attr *)self)->vtab->super.addEventListener ((GdomeNode *)self, type, listener, useCapture, exc); + ((Gdome_xml_Attr *)self)->vtab->super.addEventListener ((xmlNode *)self, type, listener, useCapture, exc); } /** * gdome_a_removeEventListener: @@ -9017,7 +9017,7 @@ gdome_a_removeEventListener (GdomeAttr * return; } *exc = 0; - ((Gdome_xml_Attr *)self)->vtab->super.removeEventListener ((GdomeNode *)self, type, listener, useCapture, exc); + ((Gdome_xml_Attr *)self)->vtab->super.removeEventListener ((xmlNode *)self, type, listener, useCapture, exc); } /** * gdome_a_dispatchEvent: @@ -9050,7 +9050,7 @@ gdome_a_dispatchEvent (GdomeAttr *self, return FALSE; } *exc = 0; - return ((Gdome_xml_Attr *)self)->vtab->super.dispatchEvent ((GdomeNode *)self, evt, exc); + return ((Gdome_xml_Attr *)self)->vtab->super.dispatchEvent ((xmlNode *)self, evt, exc); } /** * gdome_a_subTreeDispatchEvent: @@ -9082,7 +9082,7 @@ gdome_a_subTreeDispatchEvent (GdomeAttr return; } *exc = 0; - ((Gdome_xml_Attr *)self)->vtab->super.subTreeDispatchEvent ((GdomeNode *)self, evt, exc); + ((Gdome_xml_Attr *)self)->vtab->super.subTreeDispatchEvent ((xmlNode *)self, evt, exc); } /** * gdome_a_canAppend: @@ -9094,7 +9094,7 @@ gdome_a_subTreeDispatchEvent (GdomeAttr * Returns: %TRUE if @newChild can be added, %FALSE otherwise. */ GdomeBoolean -gdome_a_canAppend (GdomeAttr *self, GdomeNode *newChild, GdomeException *exc) +gdome_a_canAppend (GdomeAttr *self, xmlNode *newChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -9105,7 +9105,7 @@ gdome_a_canAppend (GdomeAttr *self, Gdom return FALSE; } *exc = 0; - return ((Gdome_xml_Attr *)self)->vtab->super.canAppend ((GdomeNode *)self, newChild, exc); + return ((Gdome_xml_Attr *)self)->vtab->super.canAppend ((xmlNode *)self, newChild, exc); } /****************************************************************************** @@ -9564,7 +9564,7 @@ gdome_el_attributes (GdomeElement *self, return NULL; } *exc = 0; - return ((Gdome_xml_Element *)self)->vtab->super.attributes ((GdomeNode *)self, exc); + return ((Gdome_xml_Element *)self)->vtab->super.attributes ((xmlNode *)self, exc); } /** * gdome_el_childNodes: @@ -9588,7 +9588,7 @@ gdome_el_childNodes (GdomeElement *self, return NULL; } *exc = 0; - return ((Gdome_xml_Element *)self)->vtab->super.childNodes ((GdomeNode *)self, exc); + return ((Gdome_xml_Element *)self)->vtab->super.childNodes ((xmlNode *)self, exc); } /** * gdome_el_firstChild: @@ -9598,7 +9598,7 @@ gdome_el_childNodes (GdomeElement *self, * Returns: the first child of this node. If there is no such node, * this returns %NULL. */ -GdomeNode * +xmlNode * gdome_el_firstChild (GdomeElement *self, GdomeException *exc) { if (self == NULL) { @@ -9610,7 +9610,7 @@ gdome_el_firstChild (GdomeElement *self, return NULL; } *exc = 0; - return ((Gdome_xml_Element *)self)->vtab->super.firstChild ((GdomeNode *)self, exc); + return ((Gdome_xml_Element *)self)->vtab->super.firstChild ((xmlNode *)self, exc); } /** * gdome_el_lastChild: @@ -9620,7 +9620,7 @@ gdome_el_firstChild (GdomeElement *self, * Returns: the last child of this node. If there is no such node, * this returns %NULL. */ -GdomeNode * +xmlNode * gdome_el_lastChild (GdomeElement *self, GdomeException *exc) { if (self == NULL) { @@ -9632,7 +9632,7 @@ gdome_el_lastChild (GdomeElement *self, return NULL; } *exc = 0; - return ((Gdome_xml_Element *)self)->vtab->super.lastChild ((GdomeNode *)self, exc); + return ((Gdome_xml_Element *)self)->vtab->super.lastChild ((xmlNode *)self, exc); } /** * gdome_el_localName: @@ -9656,7 +9656,7 @@ gdome_el_localName (GdomeElement *self, return NULL; } *exc = 0; - return ((Gdome_xml_Element *)self)->vtab->super.localName ((GdomeNode *)self, exc); + return ((Gdome_xml_Element *)self)->vtab->super.localName ((xmlNode *)self, exc); } /** * gdome_el_namespaceURI: @@ -9680,7 +9680,7 @@ gdome_el_namespaceURI (GdomeElement *sel return NULL; } *exc = 0; - return ((Gdome_xml_Element *)self)->vtab->super.namespaceURI ((GdomeNode *)self, exc); + return ((Gdome_xml_Element *)self)->vtab->super.namespaceURI ((xmlNode *)self, exc); } /** * gdome_el_nextSibling: @@ -9690,7 +9690,7 @@ gdome_el_namespaceURI (GdomeElement *sel * Returns: the node immediately following this node. If there is no such * node, this returns %NULL. */ -GdomeNode * +xmlNode * gdome_el_nextSibling (GdomeElement *self, GdomeException *exc) { if (self == NULL) { @@ -9702,7 +9702,7 @@ gdome_el_nextSibling (GdomeElement *self return NULL; } *exc = 0; - return ((Gdome_xml_Element *)self)->vtab->super.nextSibling ((GdomeNode *)self, exc); + return ((Gdome_xml_Element *)self)->vtab->super.nextSibling ((xmlNode *)self, exc); } /** * gdome_el_nodeName: @@ -9723,7 +9723,7 @@ gdome_el_nodeName (GdomeElement *self, G return NULL; } *exc = 0; - return ((Gdome_xml_Element *)self)->vtab->super.nodeName ((GdomeNode *)self, exc); + return ((Gdome_xml_Element *)self)->vtab->super.nodeName ((xmlNode *)self, exc); } /** * gdome_el_nodeType: @@ -9745,7 +9745,7 @@ gdome_el_nodeType (GdomeElement *self, G return 0; } *exc = 0; - return ((Gdome_xml_Element *)self)->vtab->super.nodeType ((GdomeNode *)self, exc); + return ((Gdome_xml_Element *)self)->vtab->super.nodeType ((xmlNode *)self, exc); } /** * gdome_el_nodeValue: @@ -9766,7 +9766,7 @@ gdome_el_nodeValue (GdomeElement *self, return NULL; } *exc = 0; - return ((Gdome_xml_Element *)self)->vtab->super.nodeValue ((GdomeNode *)self, exc); + return ((Gdome_xml_Element *)self)->vtab->super.nodeValue ((xmlNode *)self, exc); } /** * gdome_el_set_nodeValue: @@ -9790,7 +9790,7 @@ gdome_el_set_nodeValue (GdomeElement *se return; } *exc = 0; - ((Gdome_xml_Element *)self)->vtab->super.set_nodeValue ((GdomeNode *)self, nodeValue, exc); + ((Gdome_xml_Element *)self)->vtab->super.set_nodeValue ((xmlNode *)self, nodeValue, exc); } /** * gdome_el_ownerDocument: @@ -9813,7 +9813,7 @@ gdome_el_ownerDocument (GdomeElement *se return NULL; } *exc = 0; - return ((Gdome_xml_Element *)self)->vtab->super.ownerDocument ((GdomeNode *)self, exc); + return ((Gdome_xml_Element *)self)->vtab->super.ownerDocument ((xmlNode *)self, exc); } /** * gdome_el_parentNode: @@ -9825,7 +9825,7 @@ gdome_el_ownerDocument (GdomeElement *se * if a node has just been created and not yet added to the tree, or if it has * been removed from the tree, this is %NULL. */ -GdomeNode * +xmlNode * gdome_el_parentNode (GdomeElement *self, GdomeException *exc) { if (self == NULL) { @@ -9837,7 +9837,7 @@ gdome_el_parentNode (GdomeElement *self, return NULL; } *exc = 0; - return ((Gdome_xml_Element *)self)->vtab->super.parentNode ((GdomeNode *)self, exc); + return ((Gdome_xml_Element *)self)->vtab->super.parentNode ((xmlNode *)self, exc); } /** * gdome_el_prefix: @@ -9861,7 +9861,7 @@ gdome_el_prefix (GdomeElement *self, Gdo return NULL; } *exc = 0; - return ((Gdome_xml_Element *)self)->vtab->super.prefix ((GdomeNode *)self, exc); + return ((Gdome_xml_Element *)self)->vtab->super.prefix ((xmlNode *)self, exc); } /** * gdome_el_set_prefix: @@ -9892,7 +9892,7 @@ gdome_el_set_prefix (GdomeElement *self, return; } *exc = 0; - ((Gdome_xml_Element *)self)->vtab->super.set_prefix ((GdomeNode *)self, prefix, exc); + ((Gdome_xml_Element *)self)->vtab->super.set_prefix ((xmlNode *)self, prefix, exc); } /** * gdome_el_previousSibling: @@ -9902,7 +9902,7 @@ gdome_el_set_prefix (GdomeElement *self, * Returns: the node immediately preceding this node. If there is no such * node, this returns %NULL. */ -GdomeNode * +xmlNode * gdome_el_previousSibling (GdomeElement *self, GdomeException *exc) { if (self == NULL) { @@ -9914,7 +9914,7 @@ gdome_el_previousSibling (GdomeElement * return NULL; } *exc = 0; - return ((Gdome_xml_Element *)self)->vtab->super.previousSibling ((GdomeNode *)self, exc); + return ((Gdome_xml_Element *)self)->vtab->super.previousSibling ((xmlNode *)self, exc); } /** * gdome_el_ref: @@ -9935,7 +9935,7 @@ gdome_el_ref (GdomeElement *self, GdomeE return; } *exc = 0; - ((Gdome_xml_Element *)self)->vtab->super.ref ((GdomeNode *)self, exc); + ((Gdome_xml_Element *)self)->vtab->super.ref ((xmlNode *)self, exc); } /** * gdome_el_unref: @@ -9965,7 +9965,7 @@ gdome_el_unref (GdomeElement *self, Gdom } return; } - ((Gdome_xml_Element *)self)->vtab->super.unref ((GdomeNode *)self, exc); + ((Gdome_xml_Element *)self)->vtab->super.unref ((xmlNode *)self, exc); } /** * gdome_el_query_interface: @@ -9988,7 +9988,7 @@ gdome_el_query_interface (GdomeElement * return NULL; } *exc = 0; - return ((Gdome_xml_Element *)self)->vtab->super.query_interface ((GdomeNode *)self, interface, exc); + return ((Gdome_xml_Element *)self)->vtab->super.query_interface ((xmlNode *)self, interface, exc); } /** * gdome_el_appendChild: @@ -10009,8 +10009,8 @@ gdome_el_query_interface (GdomeElement * * %GDOME_NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly. * Returns: the node added. */ -GdomeNode * -gdome_el_appendChild (GdomeElement *self, GdomeNode *newChild, GdomeException *exc) +xmlNode * +gdome_el_appendChild (GdomeElement *self, xmlNode *newChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -10021,7 +10021,7 @@ gdome_el_appendChild (GdomeElement *self return NULL; } *exc = 0; - return ((Gdome_xml_Element *)self)->vtab->super.appendChild ((GdomeNode *)self, newChild, exc); + return ((Gdome_xml_Element *)self)->vtab->super.appendChild ((xmlNode *)self, newChild, exc); } /** * gdome_el_cloneNode: @@ -10041,7 +10041,7 @@ gdome_el_appendChild (GdomeElement *self * supported. * Returns: the duplicate node. */ -GdomeNode * +xmlNode * gdome_el_cloneNode (GdomeElement *self, GdomeBoolean deep, GdomeException *exc) { if (self == NULL) { @@ -10053,7 +10053,7 @@ gdome_el_cloneNode (GdomeElement *self, return NULL; } *exc = 0; - return ((Gdome_xml_Element *)self)->vtab->super.cloneNode ((GdomeNode *)self, deep, exc); + return ((Gdome_xml_Element *)self)->vtab->super.cloneNode ((xmlNode *)self, deep, exc); } /** * gdome_el_hasAttributes: @@ -10074,7 +10074,7 @@ gdome_el_hasAttributes (GdomeElement *se return FALSE; } *exc = 0; - return ((Gdome_xml_Element *)self)->vtab->super.hasAttributes ((GdomeNode *)self, exc); + return ((Gdome_xml_Element *)self)->vtab->super.hasAttributes ((xmlNode *)self, exc); } /** * gdome_el_hasChildNodes: @@ -10095,7 +10095,7 @@ gdome_el_hasChildNodes (GdomeElement *se return FALSE; } *exc = 0; - return ((Gdome_xml_Element *)self)->vtab->super.hasChildNodes ((GdomeNode *)self, exc); + return ((Gdome_xml_Element *)self)->vtab->super.hasChildNodes ((xmlNode *)self, exc); } /** * gdome_el_insertBefore: @@ -10120,8 +10120,8 @@ gdome_el_hasChildNodes (GdomeElement *se * %GDOME_NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly. * Returns: the node being inserted. */ -GdomeNode * -gdome_el_insertBefore (GdomeElement *self, GdomeNode *newChild, GdomeNode *refChild, GdomeException *exc) +xmlNode * +gdome_el_insertBefore (GdomeElement *self, xmlNode *newChild, xmlNode *refChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -10132,7 +10132,7 @@ gdome_el_insertBefore (GdomeElement *sel return NULL; } *exc = 0; - return ((Gdome_xml_Element *)self)->vtab->super.insertBefore ((GdomeNode *)self, newChild, refChild, exc); + return ((Gdome_xml_Element *)self)->vtab->super.insertBefore ((xmlNode *)self, newChild, refChild, exc); } /** * gdome_el_isSupported: @@ -10161,7 +10161,7 @@ gdome_el_isSupported (GdomeElement *self return FALSE; } *exc = 0; - return ((Gdome_xml_Element *)self)->vtab->super.isSupported ((GdomeNode *)self, feature, version, exc); + return ((Gdome_xml_Element *)self)->vtab->super.isSupported ((xmlNode *)self, feature, version, exc); } /** * gdome_el_normalize: @@ -10186,7 +10186,7 @@ gdome_el_normalize (GdomeElement *self, return; } *exc = 0; - ((Gdome_xml_Element *)self)->vtab->super.normalize ((GdomeNode *)self, exc); + ((Gdome_xml_Element *)self)->vtab->super.normalize ((xmlNode *)self, exc); } /** * gdome_el_removeChild: @@ -10201,8 +10201,8 @@ gdome_el_normalize (GdomeElement *self, * %GDOME_NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly. * Returns: the node removed. */ -GdomeNode * -gdome_el_removeChild (GdomeElement *self, GdomeNode *oldChild, GdomeException *exc) +xmlNode * +gdome_el_removeChild (GdomeElement *self, xmlNode *oldChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -10213,7 +10213,7 @@ gdome_el_removeChild (GdomeElement *self return NULL; } *exc = 0; - return ((Gdome_xml_Element *)self)->vtab->super.removeChild ((GdomeNode *)self, oldChild, exc); + return ((Gdome_xml_Element *)self)->vtab->super.removeChild ((xmlNode *)self, oldChild, exc); } /** * gdome_el_replaceChild: @@ -10237,8 +10237,8 @@ gdome_el_removeChild (GdomeElement *self * %GDOME_NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly. * Returns: the node replaced. */ -GdomeNode * -gdome_el_replaceChild (GdomeElement *self, GdomeNode *newChild, GdomeNode *oldChild, GdomeException *exc) +xmlNode * +gdome_el_replaceChild (GdomeElement *self, xmlNode *newChild, xmlNode *oldChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -10249,7 +10249,7 @@ gdome_el_replaceChild (GdomeElement *sel return NULL; } *exc = 0; - return ((Gdome_xml_Element *)self)->vtab->super.replaceChild ((GdomeNode *)self, newChild, oldChild, exc); + return ((Gdome_xml_Element *)self)->vtab->super.replaceChild ((xmlNode *)self, newChild, oldChild, exc); } /** * gdome_el_addEventListener: @@ -10286,7 +10286,7 @@ gdome_el_addEventListener (GdomeElement return; } *exc = 0; - ((Gdome_xml_Element *)self)->vtab->super.addEventListener ((GdomeNode *)self, type, listener, useCapture, exc); + ((Gdome_xml_Element *)self)->vtab->super.addEventListener ((xmlNode *)self, type, listener, useCapture, exc); } /** * gdome_el_removeEventListener: @@ -10321,7 +10321,7 @@ gdome_el_removeEventListener (GdomeEleme return; } *exc = 0; - ((Gdome_xml_Element *)self)->vtab->super.removeEventListener ((GdomeNode *)self, type, listener, useCapture, exc); + ((Gdome_xml_Element *)self)->vtab->super.removeEventListener ((xmlNode *)self, type, listener, useCapture, exc); } /** * gdome_el_dispatchEvent: @@ -10354,7 +10354,7 @@ gdome_el_dispatchEvent (GdomeElement *se return FALSE; } *exc = 0; - return ((Gdome_xml_Element *)self)->vtab->super.dispatchEvent ((GdomeNode *)self, evt, exc); + return ((Gdome_xml_Element *)self)->vtab->super.dispatchEvent ((xmlNode *)self, evt, exc); } /** * gdome_el_subTreeDispatchEvent: @@ -10386,7 +10386,7 @@ gdome_el_subTreeDispatchEvent (GdomeElem return; } *exc = 0; - ((Gdome_xml_Element *)self)->vtab->super.subTreeDispatchEvent ((GdomeNode *)self, evt, exc); + ((Gdome_xml_Element *)self)->vtab->super.subTreeDispatchEvent ((xmlNode *)self, evt, exc); } /** * gdome_el_canAppend: @@ -10398,7 +10398,7 @@ gdome_el_subTreeDispatchEvent (GdomeElem * Returns: %TRUE if @newChild can be added, %FALSE otherwise. */ GdomeBoolean -gdome_el_canAppend (GdomeElement *self, GdomeNode *newChild, GdomeException *exc) +gdome_el_canAppend (GdomeElement *self, xmlNode *newChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -10409,7 +10409,7 @@ gdome_el_canAppend (GdomeElement *self, return FALSE; } *exc = 0; - return ((Gdome_xml_Element *)self)->vtab->super.canAppend ((GdomeNode *)self, newChild, exc); + return ((Gdome_xml_Element *)self)->vtab->super.canAppend ((xmlNode *)self, newChild, exc); } /****************************************************************************** @@ -10567,7 +10567,7 @@ gdome_dt_attributes (GdomeDocumentType * return NULL; } *exc = 0; - return ((Gdome_xml_DocumentType *)self)->vtab->super.attributes ((GdomeNode *)self, exc); + return ((Gdome_xml_DocumentType *)self)->vtab->super.attributes ((xmlNode *)self, exc); } /** * gdome_dt_childNodes: @@ -10591,7 +10591,7 @@ gdome_dt_childNodes (GdomeDocumentType * return NULL; } *exc = 0; - return ((Gdome_xml_DocumentType *)self)->vtab->super.childNodes ((GdomeNode *)self, exc); + return ((Gdome_xml_DocumentType *)self)->vtab->super.childNodes ((xmlNode *)self, exc); } /** * gdome_dt_firstChild: @@ -10601,7 +10601,7 @@ gdome_dt_childNodes (GdomeDocumentType * * Returns: the first child of this node. If there is no such node, * this returns %NULL. */ -GdomeNode * +xmlNode * gdome_dt_firstChild (GdomeDocumentType *self, GdomeException *exc) { if (self == NULL) { @@ -10613,7 +10613,7 @@ gdome_dt_firstChild (GdomeDocumentType * return NULL; } *exc = 0; - return ((Gdome_xml_DocumentType *)self)->vtab->super.firstChild ((GdomeNode *)self, exc); + return ((Gdome_xml_DocumentType *)self)->vtab->super.firstChild ((xmlNode *)self, exc); } /** * gdome_dt_lastChild: @@ -10623,7 +10623,7 @@ gdome_dt_firstChild (GdomeDocumentType * * Returns: the last child of this node. If there is no such node, * this returns %NULL. */ -GdomeNode * +xmlNode * gdome_dt_lastChild (GdomeDocumentType *self, GdomeException *exc) { if (self == NULL) { @@ -10635,7 +10635,7 @@ gdome_dt_lastChild (GdomeDocumentType *s return NULL; } *exc = 0; - return ((Gdome_xml_DocumentType *)self)->vtab->super.lastChild ((GdomeNode *)self, exc); + return ((Gdome_xml_DocumentType *)self)->vtab->super.lastChild ((xmlNode *)self, exc); } /** * gdome_dt_localName: @@ -10659,7 +10659,7 @@ gdome_dt_localName (GdomeDocumentType *s return NULL; } *exc = 0; - return ((Gdome_xml_DocumentType *)self)->vtab->super.localName ((GdomeNode *)self, exc); + return ((Gdome_xml_DocumentType *)self)->vtab->super.localName ((xmlNode *)self, exc); } /** * gdome_dt_namespaceURI: @@ -10683,7 +10683,7 @@ gdome_dt_namespaceURI (GdomeDocumentType return NULL; } *exc = 0; - return ((Gdome_xml_DocumentType *)self)->vtab->super.namespaceURI ((GdomeNode *)self, exc); + return ((Gdome_xml_DocumentType *)self)->vtab->super.namespaceURI ((xmlNode *)self, exc); } /** * gdome_dt_nextSibling: @@ -10693,7 +10693,7 @@ gdome_dt_namespaceURI (GdomeDocumentType * Returns: the node immediately following this node. If there is no such * node, this returns %NULL. */ -GdomeNode * +xmlNode * gdome_dt_nextSibling (GdomeDocumentType *self, GdomeException *exc) { if (self == NULL) { @@ -10705,7 +10705,7 @@ gdome_dt_nextSibling (GdomeDocumentType return NULL; } *exc = 0; - return ((Gdome_xml_DocumentType *)self)->vtab->super.nextSibling ((GdomeNode *)self, exc); + return ((Gdome_xml_DocumentType *)self)->vtab->super.nextSibling ((xmlNode *)self, exc); } /** * gdome_dt_nodeName: @@ -10726,7 +10726,7 @@ gdome_dt_nodeName (GdomeDocumentType *se return NULL; } *exc = 0; - return ((Gdome_xml_DocumentType *)self)->vtab->super.nodeName ((GdomeNode *)self, exc); + return ((Gdome_xml_DocumentType *)self)->vtab->super.nodeName ((xmlNode *)self, exc); } /** * gdome_dt_nodeType: @@ -10748,7 +10748,7 @@ gdome_dt_nodeType (GdomeDocumentType *se return 0; } *exc = 0; - return ((Gdome_xml_DocumentType *)self)->vtab->super.nodeType ((GdomeNode *)self, exc); + return ((Gdome_xml_DocumentType *)self)->vtab->super.nodeType ((xmlNode *)self, exc); } /** * gdome_dt_nodeValue: @@ -10769,7 +10769,7 @@ gdome_dt_nodeValue (GdomeDocumentType *s return NULL; } *exc = 0; - return ((Gdome_xml_DocumentType *)self)->vtab->super.nodeValue ((GdomeNode *)self, exc); + return ((Gdome_xml_DocumentType *)self)->vtab->super.nodeValue ((xmlNode *)self, exc); } /** * gdome_dt_set_nodeValue: @@ -10793,7 +10793,7 @@ gdome_dt_set_nodeValue (GdomeDocumentTyp return; } *exc = 0; - ((Gdome_xml_DocumentType *)self)->vtab->super.set_nodeValue ((GdomeNode *)self, nodeValue, exc); + ((Gdome_xml_DocumentType *)self)->vtab->super.set_nodeValue ((xmlNode *)self, nodeValue, exc); } /** * gdome_dt_ownerDocument: @@ -10816,7 +10816,7 @@ gdome_dt_ownerDocument (GdomeDocumentTyp return NULL; } *exc = 0; - return ((Gdome_xml_DocumentType *)self)->vtab->super.ownerDocument ((GdomeNode *)self, exc); + return ((Gdome_xml_DocumentType *)self)->vtab->super.ownerDocument ((xmlNode *)self, exc); } /** * gdome_dt_parentNode: @@ -10828,7 +10828,7 @@ gdome_dt_ownerDocument (GdomeDocumentTyp * if a node has just been created and not yet added to the tree, or if it has * been removed from the tree, this is %NULL. */ -GdomeNode * +xmlNode * gdome_dt_parentNode (GdomeDocumentType *self, GdomeException *exc) { if (self == NULL) { @@ -10840,7 +10840,7 @@ gdome_dt_parentNode (GdomeDocumentType * return NULL; } *exc = 0; - return ((Gdome_xml_DocumentType *)self)->vtab->super.parentNode ((GdomeNode *)self, exc); + return ((Gdome_xml_DocumentType *)self)->vtab->super.parentNode ((xmlNode *)self, exc); } /** * gdome_dt_prefix: @@ -10864,7 +10864,7 @@ gdome_dt_prefix (GdomeDocumentType *self return NULL; } *exc = 0; - return ((Gdome_xml_DocumentType *)self)->vtab->super.prefix ((GdomeNode *)self, exc); + return ((Gdome_xml_DocumentType *)self)->vtab->super.prefix ((xmlNode *)self, exc); } /** * gdome_dt_set_prefix: @@ -10895,7 +10895,7 @@ gdome_dt_set_prefix (GdomeDocumentType * return; } *exc = 0; - ((Gdome_xml_DocumentType *)self)->vtab->super.set_prefix ((GdomeNode *)self, prefix, exc); + ((Gdome_xml_DocumentType *)self)->vtab->super.set_prefix ((xmlNode *)self, prefix, exc); } /** * gdome_dt_previousSibling: @@ -10905,7 +10905,7 @@ gdome_dt_set_prefix (GdomeDocumentType * * Returns: the node immediately preceding this node. If there is no such * node, this returns %NULL. */ -GdomeNode * +xmlNode * gdome_dt_previousSibling (GdomeDocumentType *self, GdomeException *exc) { if (self == NULL) { @@ -10917,7 +10917,7 @@ gdome_dt_previousSibling (GdomeDocumentT return NULL; } *exc = 0; - return ((Gdome_xml_DocumentType *)self)->vtab->super.previousSibling ((GdomeNode *)self, exc); + return ((Gdome_xml_DocumentType *)self)->vtab->super.previousSibling ((xmlNode *)self, exc); } /** * gdome_dt_ref: @@ -10938,7 +10938,7 @@ gdome_dt_ref (GdomeDocumentType *self, G return; } *exc = 0; - ((Gdome_xml_DocumentType *)self)->vtab->super.ref ((GdomeNode *)self, exc); + ((Gdome_xml_DocumentType *)self)->vtab->super.ref ((xmlNode *)self, exc); } /** * gdome_dt_unref: @@ -10968,7 +10968,7 @@ gdome_dt_unref (GdomeDocumentType *self, } return; } - ((Gdome_xml_DocumentType *)self)->vtab->super.unref ((GdomeNode *)self, exc); + ((Gdome_xml_DocumentType *)self)->vtab->super.unref ((xmlNode *)self, exc); } /** * gdome_dt_query_interface: @@ -10991,7 +10991,7 @@ gdome_dt_query_interface (GdomeDocumentT return NULL; } *exc = 0; - return ((Gdome_xml_DocumentType *)self)->vtab->super.query_interface ((GdomeNode *)self, interface, exc); + return ((Gdome_xml_DocumentType *)self)->vtab->super.query_interface ((xmlNode *)self, interface, exc); } /** * gdome_dt_appendChild: @@ -11012,8 +11012,8 @@ gdome_dt_query_interface (GdomeDocumentT * %GDOME_NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly. * Returns: the node added. */ -GdomeNode * -gdome_dt_appendChild (GdomeDocumentType *self, GdomeNode *newChild, GdomeException *exc) +xmlNode * +gdome_dt_appendChild (GdomeDocumentType *self, xmlNode *newChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -11024,7 +11024,7 @@ gdome_dt_appendChild (GdomeDocumentType return NULL; } *exc = 0; - return ((Gdome_xml_DocumentType *)self)->vtab->super.appendChild ((GdomeNode *)self, newChild, exc); + return ((Gdome_xml_DocumentType *)self)->vtab->super.appendChild ((xmlNode *)self, newChild, exc); } /** * gdome_dt_cloneNode: @@ -11044,7 +11044,7 @@ gdome_dt_appendChild (GdomeDocumentType * supported. * Returns: the duplicate node. */ -GdomeNode * +xmlNode * gdome_dt_cloneNode (GdomeDocumentType *self, GdomeBoolean deep, GdomeException *exc) { if (self == NULL) { @@ -11056,7 +11056,7 @@ gdome_dt_cloneNode (GdomeDocumentType *s return NULL; } *exc = 0; - return ((Gdome_xml_DocumentType *)self)->vtab->super.cloneNode ((GdomeNode *)self, deep, exc); + return ((Gdome_xml_DocumentType *)self)->vtab->super.cloneNode ((xmlNode *)self, deep, exc); } /** * gdome_dt_hasAttributes: @@ -11077,7 +11077,7 @@ gdome_dt_hasAttributes (GdomeDocumentTyp return FALSE; } *exc = 0; - return ((Gdome_xml_DocumentType *)self)->vtab->super.hasAttributes ((GdomeNode *)self, exc); + return ((Gdome_xml_DocumentType *)self)->vtab->super.hasAttributes ((xmlNode *)self, exc); } /** * gdome_dt_hasChildNodes: @@ -11098,7 +11098,7 @@ gdome_dt_hasChildNodes (GdomeDocumentTyp return FALSE; } *exc = 0; - return ((Gdome_xml_DocumentType *)self)->vtab->super.hasChildNodes ((GdomeNode *)self, exc); + return ((Gdome_xml_DocumentType *)self)->vtab->super.hasChildNodes ((xmlNode *)self, exc); } /** * gdome_dt_insertBefore: @@ -11123,8 +11123,8 @@ gdome_dt_hasChildNodes (GdomeDocumentTyp * %GDOME_NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly. * Returns: the node being inserted. */ -GdomeNode * -gdome_dt_insertBefore (GdomeDocumentType *self, GdomeNode *newChild, GdomeNode *refChild, GdomeException *exc) +xmlNode * +gdome_dt_insertBefore (GdomeDocumentType *self, xmlNode *newChild, xmlNode *refChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -11135,7 +11135,7 @@ gdome_dt_insertBefore (GdomeDocumentType return NULL; } *exc = 0; - return ((Gdome_xml_DocumentType *)self)->vtab->super.insertBefore ((GdomeNode *)self, newChild, refChild, exc); + return ((Gdome_xml_DocumentType *)self)->vtab->super.insertBefore ((xmlNode *)self, newChild, refChild, exc); } /** * gdome_dt_isSupported: @@ -11164,7 +11164,7 @@ gdome_dt_isSupported (GdomeDocumentType return FALSE; } *exc = 0; - return ((Gdome_xml_DocumentType *)self)->vtab->super.isSupported ((GdomeNode *)self, feature, version, exc); + return ((Gdome_xml_DocumentType *)self)->vtab->super.isSupported ((xmlNode *)self, feature, version, exc); } /** * gdome_dt_normalize: @@ -11189,7 +11189,7 @@ gdome_dt_normalize (GdomeDocumentType *s return; } *exc = 0; - ((Gdome_xml_DocumentType *)self)->vtab->super.normalize ((GdomeNode *)self, exc); + ((Gdome_xml_DocumentType *)self)->vtab->super.normalize ((xmlNode *)self, exc); } /** * gdome_dt_removeChild: @@ -11204,8 +11204,8 @@ gdome_dt_normalize (GdomeDocumentType *s * %GDOME_NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly. * Returns: the node removed. */ -GdomeNode * -gdome_dt_removeChild (GdomeDocumentType *self, GdomeNode *oldChild, GdomeException *exc) +xmlNode * +gdome_dt_removeChild (GdomeDocumentType *self, xmlNode *oldChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -11216,7 +11216,7 @@ gdome_dt_removeChild (GdomeDocumentType return NULL; } *exc = 0; - return ((Gdome_xml_DocumentType *)self)->vtab->super.removeChild ((GdomeNode *)self, oldChild, exc); + return ((Gdome_xml_DocumentType *)self)->vtab->super.removeChild ((xmlNode *)self, oldChild, exc); } /** * gdome_dt_replaceChild: @@ -11240,8 +11240,8 @@ gdome_dt_removeChild (GdomeDocumentType * %GDOME_NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly. * Returns: the node replaced. */ -GdomeNode * -gdome_dt_replaceChild (GdomeDocumentType *self, GdomeNode *newChild, GdomeNode *oldChild, GdomeException *exc) +xmlNode * +gdome_dt_replaceChild (GdomeDocumentType *self, xmlNode *newChild, xmlNode *oldChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -11252,7 +11252,7 @@ gdome_dt_replaceChild (GdomeDocumentType return NULL; } *exc = 0; - return ((Gdome_xml_DocumentType *)self)->vtab->super.replaceChild ((GdomeNode *)self, newChild, oldChild, exc); + return ((Gdome_xml_DocumentType *)self)->vtab->super.replaceChild ((xmlNode *)self, newChild, oldChild, exc); } /** * gdome_dt_addEventListener: @@ -11289,7 +11289,7 @@ gdome_dt_addEventListener (GdomeDocument return; } *exc = 0; - ((Gdome_xml_DocumentType *)self)->vtab->super.addEventListener ((GdomeNode *)self, type, listener, useCapture, exc); + ((Gdome_xml_DocumentType *)self)->vtab->super.addEventListener ((xmlNode *)self, type, listener, useCapture, exc); } /** * gdome_dt_removeEventListener: @@ -11324,7 +11324,7 @@ gdome_dt_removeEventListener (GdomeDocum return; } *exc = 0; - ((Gdome_xml_DocumentType *)self)->vtab->super.removeEventListener ((GdomeNode *)self, type, listener, useCapture, exc); + ((Gdome_xml_DocumentType *)self)->vtab->super.removeEventListener ((xmlNode *)self, type, listener, useCapture, exc); } /** * gdome_dt_dispatchEvent: @@ -11357,7 +11357,7 @@ gdome_dt_dispatchEvent (GdomeDocumentTyp return FALSE; } *exc = 0; - return ((Gdome_xml_DocumentType *)self)->vtab->super.dispatchEvent ((GdomeNode *)self, evt, exc); + return ((Gdome_xml_DocumentType *)self)->vtab->super.dispatchEvent ((xmlNode *)self, evt, exc); } /** * gdome_dt_subTreeDispatchEvent: @@ -11389,7 +11389,7 @@ gdome_dt_subTreeDispatchEvent (GdomeDocu return; } *exc = 0; - ((Gdome_xml_DocumentType *)self)->vtab->super.subTreeDispatchEvent ((GdomeNode *)self, evt, exc); + ((Gdome_xml_DocumentType *)self)->vtab->super.subTreeDispatchEvent ((xmlNode *)self, evt, exc); } /** * gdome_dt_canAppend: @@ -11401,7 +11401,7 @@ gdome_dt_subTreeDispatchEvent (GdomeDocu * Returns: %TRUE if @newChild can be added, %FALSE otherwise. */ GdomeBoolean -gdome_dt_canAppend (GdomeDocumentType *self, GdomeNode *newChild, GdomeException *exc) +gdome_dt_canAppend (GdomeDocumentType *self, xmlNode *newChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -11412,7 +11412,7 @@ gdome_dt_canAppend (GdomeDocumentType *s return FALSE; } *exc = 0; - return ((Gdome_xml_DocumentType *)self)->vtab->super.canAppend ((GdomeNode *)self, newChild, exc); + return ((Gdome_xml_DocumentType *)self)->vtab->super.canAppend ((xmlNode *)self, newChild, exc); } /****************************************************************************** @@ -11482,7 +11482,7 @@ gdome_not_attributes (GdomeNotation *sel return NULL; } *exc = 0; - return ((Gdome_xml_Notation *)self)->vtab->super.attributes ((GdomeNode *)self, exc); + return ((Gdome_xml_Notation *)self)->vtab->super.attributes ((xmlNode *)self, exc); } /** * gdome_not_childNodes: @@ -11506,7 +11506,7 @@ gdome_not_childNodes (GdomeNotation *sel return NULL; } *exc = 0; - return ((Gdome_xml_Notation *)self)->vtab->super.childNodes ((GdomeNode *)self, exc); + return ((Gdome_xml_Notation *)self)->vtab->super.childNodes ((xmlNode *)self, exc); } /** * gdome_not_firstChild: @@ -11516,7 +11516,7 @@ gdome_not_childNodes (GdomeNotation *sel * Returns: the first child of this node. If there is no such node, * this returns %NULL. */ -GdomeNode * +xmlNode * gdome_not_firstChild (GdomeNotation *self, GdomeException *exc) { if (self == NULL) { @@ -11528,7 +11528,7 @@ gdome_not_firstChild (GdomeNotation *sel return NULL; } *exc = 0; - return ((Gdome_xml_Notation *)self)->vtab->super.firstChild ((GdomeNode *)self, exc); + return ((Gdome_xml_Notation *)self)->vtab->super.firstChild ((xmlNode *)self, exc); } /** * gdome_not_lastChild: @@ -11538,7 +11538,7 @@ gdome_not_firstChild (GdomeNotation *sel * Returns: the last child of this node. If there is no such node, * this returns %NULL. */ -GdomeNode * +xmlNode * gdome_not_lastChild (GdomeNotation *self, GdomeException *exc) { if (self == NULL) { @@ -11550,7 +11550,7 @@ gdome_not_lastChild (GdomeNotation *self return NULL; } *exc = 0; - return ((Gdome_xml_Notation *)self)->vtab->super.lastChild ((GdomeNode *)self, exc); + return ((Gdome_xml_Notation *)self)->vtab->super.lastChild ((xmlNode *)self, exc); } /** * gdome_not_localName: @@ -11574,7 +11574,7 @@ gdome_not_localName (GdomeNotation *self return NULL; } *exc = 0; - return ((Gdome_xml_Notation *)self)->vtab->super.localName ((GdomeNode *)self, exc); + return ((Gdome_xml_Notation *)self)->vtab->super.localName ((xmlNode *)self, exc); } /** * gdome_not_namespaceURI: @@ -11598,7 +11598,7 @@ gdome_not_namespaceURI (GdomeNotation *s return NULL; } *exc = 0; - return ((Gdome_xml_Notation *)self)->vtab->super.namespaceURI ((GdomeNode *)self, exc); + return ((Gdome_xml_Notation *)self)->vtab->super.namespaceURI ((xmlNode *)self, exc); } /** * gdome_not_nextSibling: @@ -11608,7 +11608,7 @@ gdome_not_namespaceURI (GdomeNotation *s * Returns: the node immediately following this node. If there is no such * node, this returns %NULL. */ -GdomeNode * +xmlNode * gdome_not_nextSibling (GdomeNotation *self, GdomeException *exc) { if (self == NULL) { @@ -11620,7 +11620,7 @@ gdome_not_nextSibling (GdomeNotation *se return NULL; } *exc = 0; - return ((Gdome_xml_Notation *)self)->vtab->super.nextSibling ((GdomeNode *)self, exc); + return ((Gdome_xml_Notation *)self)->vtab->super.nextSibling ((xmlNode *)self, exc); } /** * gdome_not_nodeName: @@ -11641,7 +11641,7 @@ gdome_not_nodeName (GdomeNotation *self, return NULL; } *exc = 0; - return ((Gdome_xml_Notation *)self)->vtab->super.nodeName ((GdomeNode *)self, exc); + return ((Gdome_xml_Notation *)self)->vtab->super.nodeName ((xmlNode *)self, exc); } /** * gdome_not_nodeType: @@ -11663,7 +11663,7 @@ gdome_not_nodeType (GdomeNotation *self, return 0; } *exc = 0; - return ((Gdome_xml_Notation *)self)->vtab->super.nodeType ((GdomeNode *)self, exc); + return ((Gdome_xml_Notation *)self)->vtab->super.nodeType ((xmlNode *)self, exc); } /** * gdome_not_nodeValue: @@ -11684,7 +11684,7 @@ gdome_not_nodeValue (GdomeNotation *self return NULL; } *exc = 0; - return ((Gdome_xml_Notation *)self)->vtab->super.nodeValue ((GdomeNode *)self, exc); + return ((Gdome_xml_Notation *)self)->vtab->super.nodeValue ((xmlNode *)self, exc); } /** * gdome_not_set_nodeValue: @@ -11708,7 +11708,7 @@ gdome_not_set_nodeValue (GdomeNotation * return; } *exc = 0; - ((Gdome_xml_Notation *)self)->vtab->super.set_nodeValue ((GdomeNode *)self, nodeValue, exc); + ((Gdome_xml_Notation *)self)->vtab->super.set_nodeValue ((xmlNode *)self, nodeValue, exc); } /** * gdome_not_ownerDocument: @@ -11731,7 +11731,7 @@ gdome_not_ownerDocument (GdomeNotation * return NULL; } *exc = 0; - return ((Gdome_xml_Notation *)self)->vtab->super.ownerDocument ((GdomeNode *)self, exc); + return ((Gdome_xml_Notation *)self)->vtab->super.ownerDocument ((xmlNode *)self, exc); } /** * gdome_not_parentNode: @@ -11743,7 +11743,7 @@ gdome_not_ownerDocument (GdomeNotation * * if a node has just been created and not yet added to the tree, or if it has * been removed from the tree, this is %NULL. */ -GdomeNode * +xmlNode * gdome_not_parentNode (GdomeNotation *self, GdomeException *exc) { if (self == NULL) { @@ -11755,7 +11755,7 @@ gdome_not_parentNode (GdomeNotation *sel return NULL; } *exc = 0; - return ((Gdome_xml_Notation *)self)->vtab->super.parentNode ((GdomeNode *)self, exc); + return ((Gdome_xml_Notation *)self)->vtab->super.parentNode ((xmlNode *)self, exc); } /** * gdome_not_prefix: @@ -11779,7 +11779,7 @@ gdome_not_prefix (GdomeNotation *self, G return NULL; } *exc = 0; - return ((Gdome_xml_Notation *)self)->vtab->super.prefix ((GdomeNode *)self, exc); + return ((Gdome_xml_Notation *)self)->vtab->super.prefix ((xmlNode *)self, exc); } /** * gdome_not_set_prefix: @@ -11810,7 +11810,7 @@ gdome_not_set_prefix (GdomeNotation *sel return; } *exc = 0; - ((Gdome_xml_Notation *)self)->vtab->super.set_prefix ((GdomeNode *)self, prefix, exc); + ((Gdome_xml_Notation *)self)->vtab->super.set_prefix ((xmlNode *)self, prefix, exc); } /** * gdome_not_previousSibling: @@ -11820,7 +11820,7 @@ gdome_not_set_prefix (GdomeNotation *sel * Returns: the node immediately preceding this node. If there is no such * node, this returns %NULL. */ -GdomeNode * +xmlNode * gdome_not_previousSibling (GdomeNotation *self, GdomeException *exc) { if (self == NULL) { @@ -11832,7 +11832,7 @@ gdome_not_previousSibling (GdomeNotation return NULL; } *exc = 0; - return ((Gdome_xml_Notation *)self)->vtab->super.previousSibling ((GdomeNode *)self, exc); + return ((Gdome_xml_Notation *)self)->vtab->super.previousSibling ((xmlNode *)self, exc); } /** * gdome_not_ref: @@ -11853,7 +11853,7 @@ gdome_not_ref (GdomeNotation *self, Gdom return; } *exc = 0; - ((Gdome_xml_Notation *)self)->vtab->super.ref ((GdomeNode *)self, exc); + ((Gdome_xml_Notation *)self)->vtab->super.ref ((xmlNode *)self, exc); } /** * gdome_not_unref: @@ -11883,7 +11883,7 @@ gdome_not_unref (GdomeNotation *self, Gd } return; } - ((Gdome_xml_Notation *)self)->vtab->super.unref ((GdomeNode *)self, exc); + ((Gdome_xml_Notation *)self)->vtab->super.unref ((xmlNode *)self, exc); } /** * gdome_not_query_interface: @@ -11906,7 +11906,7 @@ gdome_not_query_interface (GdomeNotation return NULL; } *exc = 0; - return ((Gdome_xml_Notation *)self)->vtab->super.query_interface ((GdomeNode *)self, interface, exc); + return ((Gdome_xml_Notation *)self)->vtab->super.query_interface ((xmlNode *)self, interface, exc); } /** * gdome_not_appendChild: @@ -11927,8 +11927,8 @@ gdome_not_query_interface (GdomeNotation * %GDOME_NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly. * Returns: the node added. */ -GdomeNode * -gdome_not_appendChild (GdomeNotation *self, GdomeNode *newChild, GdomeException *exc) +xmlNode * +gdome_not_appendChild (GdomeNotation *self, xmlNode *newChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -11939,7 +11939,7 @@ gdome_not_appendChild (GdomeNotation *se return NULL; } *exc = 0; - return ((Gdome_xml_Notation *)self)->vtab->super.appendChild ((GdomeNode *)self, newChild, exc); + return ((Gdome_xml_Notation *)self)->vtab->super.appendChild ((xmlNode *)self, newChild, exc); } /** * gdome_not_cloneNode: @@ -11959,7 +11959,7 @@ gdome_not_appendChild (GdomeNotation *se * supported. * Returns: the duplicate node. */ -GdomeNode * +xmlNode * gdome_not_cloneNode (GdomeNotation *self, GdomeBoolean deep, GdomeException *exc) { if (self == NULL) { @@ -11971,7 +11971,7 @@ gdome_not_cloneNode (GdomeNotation *self return NULL; } *exc = 0; - return ((Gdome_xml_Notation *)self)->vtab->super.cloneNode ((GdomeNode *)self, deep, exc); + return ((Gdome_xml_Notation *)self)->vtab->super.cloneNode ((xmlNode *)self, deep, exc); } /** * gdome_not_hasAttributes: @@ -11992,7 +11992,7 @@ gdome_not_hasAttributes (GdomeNotation * return FALSE; } *exc = 0; - return ((Gdome_xml_Notation *)self)->vtab->super.hasAttributes ((GdomeNode *)self, exc); + return ((Gdome_xml_Notation *)self)->vtab->super.hasAttributes ((xmlNode *)self, exc); } /** * gdome_not_hasChildNodes: @@ -12013,7 +12013,7 @@ gdome_not_hasChildNodes (GdomeNotation * return FALSE; } *exc = 0; - return ((Gdome_xml_Notation *)self)->vtab->super.hasChildNodes ((GdomeNode *)self, exc); + return ((Gdome_xml_Notation *)self)->vtab->super.hasChildNodes ((xmlNode *)self, exc); } /** * gdome_not_insertBefore: @@ -12038,8 +12038,8 @@ gdome_not_hasChildNodes (GdomeNotation * * %GDOME_NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly. * Returns: the node being inserted. */ -GdomeNode * -gdome_not_insertBefore (GdomeNotation *self, GdomeNode *newChild, GdomeNode *refChild, GdomeException *exc) +xmlNode * +gdome_not_insertBefore (GdomeNotation *self, xmlNode *newChild, xmlNode *refChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -12050,7 +12050,7 @@ gdome_not_insertBefore (GdomeNotation *s return NULL; } *exc = 0; - return ((Gdome_xml_Notation *)self)->vtab->super.insertBefore ((GdomeNode *)self, newChild, refChild, exc); + return ((Gdome_xml_Notation *)self)->vtab->super.insertBefore ((xmlNode *)self, newChild, refChild, exc); } /** * gdome_not_isSupported: @@ -12079,7 +12079,7 @@ gdome_not_isSupported (GdomeNotation *se return FALSE; } *exc = 0; - return ((Gdome_xml_Notation *)self)->vtab->super.isSupported ((GdomeNode *)self, feature, version, exc); + return ((Gdome_xml_Notation *)self)->vtab->super.isSupported ((xmlNode *)self, feature, version, exc); } /** * gdome_not_normalize: @@ -12104,7 +12104,7 @@ gdome_not_normalize (GdomeNotation *self return; } *exc = 0; - ((Gdome_xml_Notation *)self)->vtab->super.normalize ((GdomeNode *)self, exc); + ((Gdome_xml_Notation *)self)->vtab->super.normalize ((xmlNode *)self, exc); } /** * gdome_not_removeChild: @@ -12119,8 +12119,8 @@ gdome_not_normalize (GdomeNotation *self * %GDOME_NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly. * Returns: the node removed. */ -GdomeNode * -gdome_not_removeChild (GdomeNotation *self, GdomeNode *oldChild, GdomeException *exc) +xmlNode * +gdome_not_removeChild (GdomeNotation *self, xmlNode *oldChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -12131,7 +12131,7 @@ gdome_not_removeChild (GdomeNotation *se return NULL; } *exc = 0; - return ((Gdome_xml_Notation *)self)->vtab->super.removeChild ((GdomeNode *)self, oldChild, exc); + return ((Gdome_xml_Notation *)self)->vtab->super.removeChild ((xmlNode *)self, oldChild, exc); } /** * gdome_not_replaceChild: @@ -12155,8 +12155,8 @@ gdome_not_removeChild (GdomeNotation *se * %GDOME_NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly. * Returns: the node replaced. */ -GdomeNode * -gdome_not_replaceChild (GdomeNotation *self, GdomeNode *newChild, GdomeNode *oldChild, GdomeException *exc) +xmlNode * +gdome_not_replaceChild (GdomeNotation *self, xmlNode *newChild, xmlNode *oldChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -12167,7 +12167,7 @@ gdome_not_replaceChild (GdomeNotation *s return NULL; } *exc = 0; - return ((Gdome_xml_Notation *)self)->vtab->super.replaceChild ((GdomeNode *)self, newChild, oldChild, exc); + return ((Gdome_xml_Notation *)self)->vtab->super.replaceChild ((xmlNode *)self, newChild, oldChild, exc); } /** * gdome_not_addEventListener: @@ -12204,7 +12204,7 @@ gdome_not_addEventListener (GdomeNotatio return; } *exc = 0; - ((Gdome_xml_Notation *)self)->vtab->super.addEventListener ((GdomeNode *)self, type, listener, useCapture, exc); + ((Gdome_xml_Notation *)self)->vtab->super.addEventListener ((xmlNode *)self, type, listener, useCapture, exc); } /** * gdome_not_removeEventListener: @@ -12239,7 +12239,7 @@ gdome_not_removeEventListener (GdomeNota return; } *exc = 0; - ((Gdome_xml_Notation *)self)->vtab->super.removeEventListener ((GdomeNode *)self, type, listener, useCapture, exc); + ((Gdome_xml_Notation *)self)->vtab->super.removeEventListener ((xmlNode *)self, type, listener, useCapture, exc); } /** * gdome_not_dispatchEvent: @@ -12272,7 +12272,7 @@ gdome_not_dispatchEvent (GdomeNotation * return FALSE; } *exc = 0; - return ((Gdome_xml_Notation *)self)->vtab->super.dispatchEvent ((GdomeNode *)self, evt, exc); + return ((Gdome_xml_Notation *)self)->vtab->super.dispatchEvent ((xmlNode *)self, evt, exc); } /** * gdome_not_subTreeDispatchEvent: @@ -12304,7 +12304,7 @@ gdome_not_subTreeDispatchEvent (GdomeNot return; } *exc = 0; - ((Gdome_xml_Notation *)self)->vtab->super.subTreeDispatchEvent ((GdomeNode *)self, evt, exc); + ((Gdome_xml_Notation *)self)->vtab->super.subTreeDispatchEvent ((xmlNode *)self, evt, exc); } /** * gdome_not_canAppend: @@ -12316,7 +12316,7 @@ gdome_not_subTreeDispatchEvent (GdomeNot * Returns: %TRUE if @newChild can be added, %FALSE otherwise. */ GdomeBoolean -gdome_not_canAppend (GdomeNotation *self, GdomeNode *newChild, GdomeException *exc) +gdome_not_canAppend (GdomeNotation *self, xmlNode *newChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -12327,7 +12327,7 @@ gdome_not_canAppend (GdomeNotation *self return FALSE; } *exc = 0; - return ((Gdome_xml_Notation *)self)->vtab->super.canAppend ((GdomeNode *)self, newChild, exc); + return ((Gdome_xml_Notation *)self)->vtab->super.canAppend ((xmlNode *)self, newChild, exc); } /****************************************************************************** @@ -12419,7 +12419,7 @@ gdome_ent_attributes (GdomeEntity *self, return NULL; } *exc = 0; - return ((Gdome_xml_Entity *)self)->vtab->super.attributes ((GdomeNode *)self, exc); + return ((Gdome_xml_Entity *)self)->vtab->super.attributes ((xmlNode *)self, exc); } /** * gdome_ent_childNodes: @@ -12443,7 +12443,7 @@ gdome_ent_childNodes (GdomeEntity *self, return NULL; } *exc = 0; - return ((Gdome_xml_Entity *)self)->vtab->super.childNodes ((GdomeNode *)self, exc); + return ((Gdome_xml_Entity *)self)->vtab->super.childNodes ((xmlNode *)self, exc); } /** * gdome_ent_firstChild: @@ -12453,7 +12453,7 @@ gdome_ent_childNodes (GdomeEntity *self, * Returns: the first child of this node. If there is no such node, * this returns %NULL. */ -GdomeNode * +xmlNode * gdome_ent_firstChild (GdomeEntity *self, GdomeException *exc) { if (self == NULL) { @@ -12465,7 +12465,7 @@ gdome_ent_firstChild (GdomeEntity *self, return NULL; } *exc = 0; - return ((Gdome_xml_Entity *)self)->vtab->super.firstChild ((GdomeNode *)self, exc); + return ((Gdome_xml_Entity *)self)->vtab->super.firstChild ((xmlNode *)self, exc); } /** * gdome_ent_lastChild: @@ -12475,7 +12475,7 @@ gdome_ent_firstChild (GdomeEntity *self, * Returns: the last child of this node. If there is no such node, * this returns %NULL. */ -GdomeNode * +xmlNode * gdome_ent_lastChild (GdomeEntity *self, GdomeException *exc) { if (self == NULL) { @@ -12487,7 +12487,7 @@ gdome_ent_lastChild (GdomeEntity *self, return NULL; } *exc = 0; - return ((Gdome_xml_Entity *)self)->vtab->super.lastChild ((GdomeNode *)self, exc); + return ((Gdome_xml_Entity *)self)->vtab->super.lastChild ((xmlNode *)self, exc); } /** * gdome_ent_localName: @@ -12511,7 +12511,7 @@ gdome_ent_localName (GdomeEntity *self, return NULL; } *exc = 0; - return ((Gdome_xml_Entity *)self)->vtab->super.localName ((GdomeNode *)self, exc); + return ((Gdome_xml_Entity *)self)->vtab->super.localName ((xmlNode *)self, exc); } /** * gdome_ent_namespaceURI: @@ -12535,7 +12535,7 @@ gdome_ent_namespaceURI (GdomeEntity *sel return NULL; } *exc = 0; - return ((Gdome_xml_Entity *)self)->vtab->super.namespaceURI ((GdomeNode *)self, exc); + return ((Gdome_xml_Entity *)self)->vtab->super.namespaceURI ((xmlNode *)self, exc); } /** * gdome_ent_nextSibling: @@ -12545,7 +12545,7 @@ gdome_ent_namespaceURI (GdomeEntity *sel * Returns: the node immediately following this node. If there is no such * node, this returns %NULL. */ -GdomeNode * +xmlNode * gdome_ent_nextSibling (GdomeEntity *self, GdomeException *exc) { if (self == NULL) { @@ -12557,7 +12557,7 @@ gdome_ent_nextSibling (GdomeEntity *self return NULL; } *exc = 0; - return ((Gdome_xml_Entity *)self)->vtab->super.nextSibling ((GdomeNode *)self, exc); + return ((Gdome_xml_Entity *)self)->vtab->super.nextSibling ((xmlNode *)self, exc); } /** * gdome_ent_nodeName: @@ -12578,7 +12578,7 @@ gdome_ent_nodeName (GdomeEntity *self, G return NULL; } *exc = 0; - return ((Gdome_xml_Entity *)self)->vtab->super.nodeName ((GdomeNode *)self, exc); + return ((Gdome_xml_Entity *)self)->vtab->super.nodeName ((xmlNode *)self, exc); } /** * gdome_ent_nodeType: @@ -12600,7 +12600,7 @@ gdome_ent_nodeType (GdomeEntity *self, G return 0; } *exc = 0; - return ((Gdome_xml_Entity *)self)->vtab->super.nodeType ((GdomeNode *)self, exc); + return ((Gdome_xml_Entity *)self)->vtab->super.nodeType ((xmlNode *)self, exc); } /** * gdome_ent_nodeValue: @@ -12621,7 +12621,7 @@ gdome_ent_nodeValue (GdomeEntity *self, return NULL; } *exc = 0; - return ((Gdome_xml_Entity *)self)->vtab->super.nodeValue ((GdomeNode *)self, exc); + return ((Gdome_xml_Entity *)self)->vtab->super.nodeValue ((xmlNode *)self, exc); } /** * gdome_ent_set_nodeValue: @@ -12645,7 +12645,7 @@ gdome_ent_set_nodeValue (GdomeEntity *se return; } *exc = 0; - ((Gdome_xml_Entity *)self)->vtab->super.set_nodeValue ((GdomeNode *)self, nodeValue, exc); + ((Gdome_xml_Entity *)self)->vtab->super.set_nodeValue ((xmlNode *)self, nodeValue, exc); } /** * gdome_ent_ownerDocument: @@ -12668,7 +12668,7 @@ gdome_ent_ownerDocument (GdomeEntity *se return NULL; } *exc = 0; - return ((Gdome_xml_Entity *)self)->vtab->super.ownerDocument ((GdomeNode *)self, exc); + return ((Gdome_xml_Entity *)self)->vtab->super.ownerDocument ((xmlNode *)self, exc); } /** * gdome_ent_parentNode: @@ -12680,7 +12680,7 @@ gdome_ent_ownerDocument (GdomeEntity *se * if a node has just been created and not yet added to the tree, or if it has * been removed from the tree, this is %NULL. */ -GdomeNode * +xmlNode * gdome_ent_parentNode (GdomeEntity *self, GdomeException *exc) { if (self == NULL) { @@ -12692,7 +12692,7 @@ gdome_ent_parentNode (GdomeEntity *self, return NULL; } *exc = 0; - return ((Gdome_xml_Entity *)self)->vtab->super.parentNode ((GdomeNode *)self, exc); + return ((Gdome_xml_Entity *)self)->vtab->super.parentNode ((xmlNode *)self, exc); } /** * gdome_ent_prefix: @@ -12716,7 +12716,7 @@ gdome_ent_prefix (GdomeEntity *self, Gdo return NULL; } *exc = 0; - return ((Gdome_xml_Entity *)self)->vtab->super.prefix ((GdomeNode *)self, exc); + return ((Gdome_xml_Entity *)self)->vtab->super.prefix ((xmlNode *)self, exc); } /** * gdome_ent_set_prefix: @@ -12747,7 +12747,7 @@ gdome_ent_set_prefix (GdomeEntity *self, return; } *exc = 0; - ((Gdome_xml_Entity *)self)->vtab->super.set_prefix ((GdomeNode *)self, prefix, exc); + ((Gdome_xml_Entity *)self)->vtab->super.set_prefix ((xmlNode *)self, prefix, exc); } /** * gdome_ent_previousSibling: @@ -12757,7 +12757,7 @@ gdome_ent_set_prefix (GdomeEntity *self, * Returns: the node immediately preceding this node. If there is no such * node, this returns %NULL. */ -GdomeNode * +xmlNode * gdome_ent_previousSibling (GdomeEntity *self, GdomeException *exc) { if (self == NULL) { @@ -12769,7 +12769,7 @@ gdome_ent_previousSibling (GdomeEntity * return NULL; } *exc = 0; - return ((Gdome_xml_Entity *)self)->vtab->super.previousSibling ((GdomeNode *)self, exc); + return ((Gdome_xml_Entity *)self)->vtab->super.previousSibling ((xmlNode *)self, exc); } /** * gdome_ent_ref: @@ -12790,7 +12790,7 @@ gdome_ent_ref (GdomeEntity *self, GdomeE return; } *exc = 0; - ((Gdome_xml_Entity *)self)->vtab->super.ref ((GdomeNode *)self, exc); + ((Gdome_xml_Entity *)self)->vtab->super.ref ((xmlNode *)self, exc); } /** * gdome_ent_unref: @@ -12820,7 +12820,7 @@ gdome_ent_unref (GdomeEntity *self, Gdom } return; } - ((Gdome_xml_Entity *)self)->vtab->super.unref ((GdomeNode *)self, exc); + ((Gdome_xml_Entity *)self)->vtab->super.unref ((xmlNode *)self, exc); } /** * gdome_ent_query_interface: @@ -12843,7 +12843,7 @@ gdome_ent_query_interface (GdomeEntity * return NULL; } *exc = 0; - return ((Gdome_xml_Entity *)self)->vtab->super.query_interface ((GdomeNode *)self, interface, exc); + return ((Gdome_xml_Entity *)self)->vtab->super.query_interface ((xmlNode *)self, interface, exc); } /** * gdome_ent_appendChild: @@ -12864,8 +12864,8 @@ gdome_ent_query_interface (GdomeEntity * * %GDOME_NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly. * Returns: the node added. */ -GdomeNode * -gdome_ent_appendChild (GdomeEntity *self, GdomeNode *newChild, GdomeException *exc) +xmlNode * +gdome_ent_appendChild (GdomeEntity *self, xmlNode *newChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -12876,7 +12876,7 @@ gdome_ent_appendChild (GdomeEntity *self return NULL; } *exc = 0; - return ((Gdome_xml_Entity *)self)->vtab->super.appendChild ((GdomeNode *)self, newChild, exc); + return ((Gdome_xml_Entity *)self)->vtab->super.appendChild ((xmlNode *)self, newChild, exc); } /** * gdome_ent_cloneNode: @@ -12896,7 +12896,7 @@ gdome_ent_appendChild (GdomeEntity *self * supported. * Returns: the duplicate node. */ -GdomeNode * +xmlNode * gdome_ent_cloneNode (GdomeEntity *self, GdomeBoolean deep, GdomeException *exc) { if (self == NULL) { @@ -12908,7 +12908,7 @@ gdome_ent_cloneNode (GdomeEntity *self, return NULL; } *exc = 0; - return ((Gdome_xml_Entity *)self)->vtab->super.cloneNode ((GdomeNode *)self, deep, exc); + return ((Gdome_xml_Entity *)self)->vtab->super.cloneNode ((xmlNode *)self, deep, exc); } /** * gdome_ent_hasAttributes: @@ -12929,7 +12929,7 @@ gdome_ent_hasAttributes (GdomeEntity *se return FALSE; } *exc = 0; - return ((Gdome_xml_Entity *)self)->vtab->super.hasAttributes ((GdomeNode *)self, exc); + return ((Gdome_xml_Entity *)self)->vtab->super.hasAttributes ((xmlNode *)self, exc); } /** * gdome_ent_hasChildNodes: @@ -12950,7 +12950,7 @@ gdome_ent_hasChildNodes (GdomeEntity *se return FALSE; } *exc = 0; - return ((Gdome_xml_Entity *)self)->vtab->super.hasChildNodes ((GdomeNode *)self, exc); + return ((Gdome_xml_Entity *)self)->vtab->super.hasChildNodes ((xmlNode *)self, exc); } /** * gdome_ent_insertBefore: @@ -12975,8 +12975,8 @@ gdome_ent_hasChildNodes (GdomeEntity *se * %GDOME_NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly. * Returns: the node being inserted. */ -GdomeNode * -gdome_ent_insertBefore (GdomeEntity *self, GdomeNode *newChild, GdomeNode *refChild, GdomeException *exc) +xmlNode * +gdome_ent_insertBefore (GdomeEntity *self, xmlNode *newChild, xmlNode *refChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -12987,7 +12987,7 @@ gdome_ent_insertBefore (GdomeEntity *sel return NULL; } *exc = 0; - return ((Gdome_xml_Entity *)self)->vtab->super.insertBefore ((GdomeNode *)self, newChild, refChild, exc); + return ((Gdome_xml_Entity *)self)->vtab->super.insertBefore ((xmlNode *)self, newChild, refChild, exc); } /** * gdome_ent_isSupported: @@ -13016,7 +13016,7 @@ gdome_ent_isSupported (GdomeEntity *self return FALSE; } *exc = 0; - return ((Gdome_xml_Entity *)self)->vtab->super.isSupported ((GdomeNode *)self, feature, version, exc); + return ((Gdome_xml_Entity *)self)->vtab->super.isSupported ((xmlNode *)self, feature, version, exc); } /** * gdome_ent_normalize: @@ -13041,7 +13041,7 @@ gdome_ent_normalize (GdomeEntity *self, return; } *exc = 0; - ((Gdome_xml_Entity *)self)->vtab->super.normalize ((GdomeNode *)self, exc); + ((Gdome_xml_Entity *)self)->vtab->super.normalize ((xmlNode *)self, exc); } /** * gdome_ent_removeChild: @@ -13056,8 +13056,8 @@ gdome_ent_normalize (GdomeEntity *self, * %GDOME_NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly. * Returns: the node removed. */ -GdomeNode * -gdome_ent_removeChild (GdomeEntity *self, GdomeNode *oldChild, GdomeException *exc) +xmlNode * +gdome_ent_removeChild (GdomeEntity *self, xmlNode *oldChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -13068,7 +13068,7 @@ gdome_ent_removeChild (GdomeEntity *self return NULL; } *exc = 0; - return ((Gdome_xml_Entity *)self)->vtab->super.removeChild ((GdomeNode *)self, oldChild, exc); + return ((Gdome_xml_Entity *)self)->vtab->super.removeChild ((xmlNode *)self, oldChild, exc); } /** * gdome_ent_replaceChild: @@ -13092,8 +13092,8 @@ gdome_ent_removeChild (GdomeEntity *self * %GDOME_NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly. * Returns: the node replaced. */ -GdomeNode * -gdome_ent_replaceChild (GdomeEntity *self, GdomeNode *newChild, GdomeNode *oldChild, GdomeException *exc) +xmlNode * +gdome_ent_replaceChild (GdomeEntity *self, xmlNode *newChild, xmlNode *oldChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -13104,7 +13104,7 @@ gdome_ent_replaceChild (GdomeEntity *sel return NULL; } *exc = 0; - return ((Gdome_xml_Entity *)self)->vtab->super.replaceChild ((GdomeNode *)self, newChild, oldChild, exc); + return ((Gdome_xml_Entity *)self)->vtab->super.replaceChild ((xmlNode *)self, newChild, oldChild, exc); } /** * gdome_ent_addEventListener: @@ -13141,7 +13141,7 @@ gdome_ent_addEventListener (GdomeEntity return; } *exc = 0; - ((Gdome_xml_Entity *)self)->vtab->super.addEventListener ((GdomeNode *)self, type, listener, useCapture, exc); + ((Gdome_xml_Entity *)self)->vtab->super.addEventListener ((xmlNode *)self, type, listener, useCapture, exc); } /** * gdome_ent_removeEventListener: @@ -13176,7 +13176,7 @@ gdome_ent_removeEventListener (GdomeEnti return; } *exc = 0; - ((Gdome_xml_Entity *)self)->vtab->super.removeEventListener ((GdomeNode *)self, type, listener, useCapture, exc); + ((Gdome_xml_Entity *)self)->vtab->super.removeEventListener ((xmlNode *)self, type, listener, useCapture, exc); } /** * gdome_ent_dispatchEvent: @@ -13209,7 +13209,7 @@ gdome_ent_dispatchEvent (GdomeEntity *se return FALSE; } *exc = 0; - return ((Gdome_xml_Entity *)self)->vtab->super.dispatchEvent ((GdomeNode *)self, evt, exc); + return ((Gdome_xml_Entity *)self)->vtab->super.dispatchEvent ((xmlNode *)self, evt, exc); } /** * gdome_ent_subTreeDispatchEvent: @@ -13241,7 +13241,7 @@ gdome_ent_subTreeDispatchEvent (GdomeEnt return; } *exc = 0; - ((Gdome_xml_Entity *)self)->vtab->super.subTreeDispatchEvent ((GdomeNode *)self, evt, exc); + ((Gdome_xml_Entity *)self)->vtab->super.subTreeDispatchEvent ((xmlNode *)self, evt, exc); } /** * gdome_ent_canAppend: @@ -13253,7 +13253,7 @@ gdome_ent_subTreeDispatchEvent (GdomeEnt * Returns: %TRUE if @newChild can be added, %FALSE otherwise. */ GdomeBoolean -gdome_ent_canAppend (GdomeEntity *self, GdomeNode *newChild, GdomeException *exc) +gdome_ent_canAppend (GdomeEntity *self, xmlNode *newChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -13264,7 +13264,7 @@ gdome_ent_canAppend (GdomeEntity *self, return FALSE; } *exc = 0; - return ((Gdome_xml_Entity *)self)->vtab->super.canAppend ((GdomeNode *)self, newChild, exc); + return ((Gdome_xml_Entity *)self)->vtab->super.canAppend ((xmlNode *)self, newChild, exc); } /****************************************************************************** @@ -13290,7 +13290,7 @@ gdome_er_attributes (GdomeEntityReferenc return NULL; } *exc = 0; - return ((Gdome_xml_EntityReference *)self)->vtab->super.attributes ((GdomeNode *)self, exc); + return ((Gdome_xml_EntityReference *)self)->vtab->super.attributes ((xmlNode *)self, exc); } /** * gdome_er_childNodes: @@ -13314,7 +13314,7 @@ gdome_er_childNodes (GdomeEntityReferenc return NULL; } *exc = 0; - return ((Gdome_xml_EntityReference *)self)->vtab->super.childNodes ((GdomeNode *)self, exc); + return ((Gdome_xml_EntityReference *)self)->vtab->super.childNodes ((xmlNode *)self, exc); } /** * gdome_er_firstChild: @@ -13324,7 +13324,7 @@ gdome_er_childNodes (GdomeEntityReferenc * Returns: the first child of this node. If there is no such node, * this returns %NULL. */ -GdomeNode * +xmlNode * gdome_er_firstChild (GdomeEntityReference *self, GdomeException *exc) { if (self == NULL) { @@ -13336,7 +13336,7 @@ gdome_er_firstChild (GdomeEntityReferenc return NULL; } *exc = 0; - return ((Gdome_xml_EntityReference *)self)->vtab->super.firstChild ((GdomeNode *)self, exc); + return ((Gdome_xml_EntityReference *)self)->vtab->super.firstChild ((xmlNode *)self, exc); } /** * gdome_er_lastChild: @@ -13346,7 +13346,7 @@ gdome_er_firstChild (GdomeEntityReferenc * Returns: the last child of this node. If there is no such node, * this returns %NULL. */ -GdomeNode * +xmlNode * gdome_er_lastChild (GdomeEntityReference *self, GdomeException *exc) { if (self == NULL) { @@ -13358,7 +13358,7 @@ gdome_er_lastChild (GdomeEntityReference return NULL; } *exc = 0; - return ((Gdome_xml_EntityReference *)self)->vtab->super.lastChild ((GdomeNode *)self, exc); + return ((Gdome_xml_EntityReference *)self)->vtab->super.lastChild ((xmlNode *)self, exc); } /** * gdome_er_localName: @@ -13382,7 +13382,7 @@ gdome_er_localName (GdomeEntityReference return NULL; } *exc = 0; - return ((Gdome_xml_EntityReference *)self)->vtab->super.localName ((GdomeNode *)self, exc); + return ((Gdome_xml_EntityReference *)self)->vtab->super.localName ((xmlNode *)self, exc); } /** * gdome_er_namespaceURI: @@ -13406,7 +13406,7 @@ gdome_er_namespaceURI (GdomeEntityRefere return NULL; } *exc = 0; - return ((Gdome_xml_EntityReference *)self)->vtab->super.namespaceURI ((GdomeNode *)self, exc); + return ((Gdome_xml_EntityReference *)self)->vtab->super.namespaceURI ((xmlNode *)self, exc); } /** * gdome_er_nextSibling: @@ -13416,7 +13416,7 @@ gdome_er_namespaceURI (GdomeEntityRefere * Returns: the node immediately following this node. If there is no such * node, this returns %NULL. */ -GdomeNode * +xmlNode * gdome_er_nextSibling (GdomeEntityReference *self, GdomeException *exc) { if (self == NULL) { @@ -13428,7 +13428,7 @@ gdome_er_nextSibling (GdomeEntityReferen return NULL; } *exc = 0; - return ((Gdome_xml_EntityReference *)self)->vtab->super.nextSibling ((GdomeNode *)self, exc); + return ((Gdome_xml_EntityReference *)self)->vtab->super.nextSibling ((xmlNode *)self, exc); } /** * gdome_er_nodeName: @@ -13449,7 +13449,7 @@ gdome_er_nodeName (GdomeEntityReference return NULL; } *exc = 0; - return ((Gdome_xml_EntityReference *)self)->vtab->super.nodeName ((GdomeNode *)self, exc); + return ((Gdome_xml_EntityReference *)self)->vtab->super.nodeName ((xmlNode *)self, exc); } /** * gdome_er_nodeType: @@ -13471,7 +13471,7 @@ gdome_er_nodeType (GdomeEntityReference return 0; } *exc = 0; - return ((Gdome_xml_EntityReference *)self)->vtab->super.nodeType ((GdomeNode *)self, exc); + return ((Gdome_xml_EntityReference *)self)->vtab->super.nodeType ((xmlNode *)self, exc); } /** * gdome_er_nodeValue: @@ -13492,7 +13492,7 @@ gdome_er_nodeValue (GdomeEntityReference return NULL; } *exc = 0; - return ((Gdome_xml_EntityReference *)self)->vtab->super.nodeValue ((GdomeNode *)self, exc); + return ((Gdome_xml_EntityReference *)self)->vtab->super.nodeValue ((xmlNode *)self, exc); } /** * gdome_er_set_nodeValue: @@ -13516,7 +13516,7 @@ gdome_er_set_nodeValue (GdomeEntityRefer return; } *exc = 0; - ((Gdome_xml_EntityReference *)self)->vtab->super.set_nodeValue ((GdomeNode *)self, nodeValue, exc); + ((Gdome_xml_EntityReference *)self)->vtab->super.set_nodeValue ((xmlNode *)self, nodeValue, exc); } /** * gdome_er_ownerDocument: @@ -13539,7 +13539,7 @@ gdome_er_ownerDocument (GdomeEntityRefer return NULL; } *exc = 0; - return ((Gdome_xml_EntityReference *)self)->vtab->super.ownerDocument ((GdomeNode *)self, exc); + return ((Gdome_xml_EntityReference *)self)->vtab->super.ownerDocument ((xmlNode *)self, exc); } /** * gdome_er_parentNode: @@ -13551,7 +13551,7 @@ gdome_er_ownerDocument (GdomeEntityRefer * if a node has just been created and not yet added to the tree, or if it has * been removed from the tree, this is %NULL. */ -GdomeNode * +xmlNode * gdome_er_parentNode (GdomeEntityReference *self, GdomeException *exc) { if (self == NULL) { @@ -13563,7 +13563,7 @@ gdome_er_parentNode (GdomeEntityReferenc return NULL; } *exc = 0; - return ((Gdome_xml_EntityReference *)self)->vtab->super.parentNode ((GdomeNode *)self, exc); + return ((Gdome_xml_EntityReference *)self)->vtab->super.parentNode ((xmlNode *)self, exc); } /** * gdome_er_prefix: @@ -13587,7 +13587,7 @@ gdome_er_prefix (GdomeEntityReference *s return NULL; } *exc = 0; - return ((Gdome_xml_EntityReference *)self)->vtab->super.prefix ((GdomeNode *)self, exc); + return ((Gdome_xml_EntityReference *)self)->vtab->super.prefix ((xmlNode *)self, exc); } /** * gdome_er_set_prefix: @@ -13618,7 +13618,7 @@ gdome_er_set_prefix (GdomeEntityReferenc return; } *exc = 0; - ((Gdome_xml_EntityReference *)self)->vtab->super.set_prefix ((GdomeNode *)self, prefix, exc); + ((Gdome_xml_EntityReference *)self)->vtab->super.set_prefix ((xmlNode *)self, prefix, exc); } /** * gdome_er_previousSibling: @@ -13628,7 +13628,7 @@ gdome_er_set_prefix (GdomeEntityReferenc * Returns: the node immediately preceding this node. If there is no such * node, this returns %NULL. */ -GdomeNode * +xmlNode * gdome_er_previousSibling (GdomeEntityReference *self, GdomeException *exc) { if (self == NULL) { @@ -13640,7 +13640,7 @@ gdome_er_previousSibling (GdomeEntityRef return NULL; } *exc = 0; - return ((Gdome_xml_EntityReference *)self)->vtab->super.previousSibling ((GdomeNode *)self, exc); + return ((Gdome_xml_EntityReference *)self)->vtab->super.previousSibling ((xmlNode *)self, exc); } /** * gdome_er_ref: @@ -13661,7 +13661,7 @@ gdome_er_ref (GdomeEntityReference *self return; } *exc = 0; - ((Gdome_xml_EntityReference *)self)->vtab->super.ref ((GdomeNode *)self, exc); + ((Gdome_xml_EntityReference *)self)->vtab->super.ref ((xmlNode *)self, exc); } /** * gdome_er_unref: @@ -13691,7 +13691,7 @@ gdome_er_unref (GdomeEntityReference *se } return; } - ((Gdome_xml_EntityReference *)self)->vtab->super.unref ((GdomeNode *)self, exc); + ((Gdome_xml_EntityReference *)self)->vtab->super.unref ((xmlNode *)self, exc); } /** * gdome_er_query_interface: @@ -13714,7 +13714,7 @@ gdome_er_query_interface (GdomeEntityRef return NULL; } *exc = 0; - return ((Gdome_xml_EntityReference *)self)->vtab->super.query_interface ((GdomeNode *)self, interface, exc); + return ((Gdome_xml_EntityReference *)self)->vtab->super.query_interface ((xmlNode *)self, interface, exc); } /** * gdome_er_appendChild: @@ -13735,8 +13735,8 @@ gdome_er_query_interface (GdomeEntityRef * %GDOME_NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly. * Returns: the node added. */ -GdomeNode * -gdome_er_appendChild (GdomeEntityReference *self, GdomeNode *newChild, GdomeException *exc) +xmlNode * +gdome_er_appendChild (GdomeEntityReference *self, xmlNode *newChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -13747,7 +13747,7 @@ gdome_er_appendChild (GdomeEntityReferen return NULL; } *exc = 0; - return ((Gdome_xml_EntityReference *)self)->vtab->super.appendChild ((GdomeNode *)self, newChild, exc); + return ((Gdome_xml_EntityReference *)self)->vtab->super.appendChild ((xmlNode *)self, newChild, exc); } /** * gdome_er_cloneNode: @@ -13767,7 +13767,7 @@ gdome_er_appendChild (GdomeEntityReferen * supported. * Returns: the duplicate node. */ -GdomeNode * +xmlNode * gdome_er_cloneNode (GdomeEntityReference *self, GdomeBoolean deep, GdomeException *exc) { if (self == NULL) { @@ -13779,7 +13779,7 @@ gdome_er_cloneNode (GdomeEntityReference return NULL; } *exc = 0; - return ((Gdome_xml_EntityReference *)self)->vtab->super.cloneNode ((GdomeNode *)self, deep, exc); + return ((Gdome_xml_EntityReference *)self)->vtab->super.cloneNode ((xmlNode *)self, deep, exc); } /** * gdome_er_hasAttributes: @@ -13800,7 +13800,7 @@ gdome_er_hasAttributes (GdomeEntityRefer return FALSE; } *exc = 0; - return ((Gdome_xml_EntityReference *)self)->vtab->super.hasAttributes ((GdomeNode *)self, exc); + return ((Gdome_xml_EntityReference *)self)->vtab->super.hasAttributes ((xmlNode *)self, exc); } /** * gdome_er_hasChildNodes: @@ -13821,7 +13821,7 @@ gdome_er_hasChildNodes (GdomeEntityRefer return FALSE; } *exc = 0; - return ((Gdome_xml_EntityReference *)self)->vtab->super.hasChildNodes ((GdomeNode *)self, exc); + return ((Gdome_xml_EntityReference *)self)->vtab->super.hasChildNodes ((xmlNode *)self, exc); } /** * gdome_er_insertBefore: @@ -13846,8 +13846,8 @@ gdome_er_hasChildNodes (GdomeEntityRefer * %GDOME_NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly. * Returns: the node being inserted. */ -GdomeNode * -gdome_er_insertBefore (GdomeEntityReference *self, GdomeNode *newChild, GdomeNode *refChild, GdomeException *exc) +xmlNode * +gdome_er_insertBefore (GdomeEntityReference *self, xmlNode *newChild, xmlNode *refChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -13858,7 +13858,7 @@ gdome_er_insertBefore (GdomeEntityRefere return NULL; } *exc = 0; - return ((Gdome_xml_EntityReference *)self)->vtab->super.insertBefore ((GdomeNode *)self, newChild, refChild, exc); + return ((Gdome_xml_EntityReference *)self)->vtab->super.insertBefore ((xmlNode *)self, newChild, refChild, exc); } /** * gdome_er_isSupported: @@ -13887,7 +13887,7 @@ gdome_er_isSupported (GdomeEntityReferen return FALSE; } *exc = 0; - return ((Gdome_xml_EntityReference *)self)->vtab->super.isSupported ((GdomeNode *)self, feature, version, exc); + return ((Gdome_xml_EntityReference *)self)->vtab->super.isSupported ((xmlNode *)self, feature, version, exc); } /** * gdome_er_normalize: @@ -13912,7 +13912,7 @@ gdome_er_normalize (GdomeEntityReference return; } *exc = 0; - ((Gdome_xml_EntityReference *)self)->vtab->super.normalize ((GdomeNode *)self, exc); + ((Gdome_xml_EntityReference *)self)->vtab->super.normalize ((xmlNode *)self, exc); } /** * gdome_er_removeChild: @@ -13927,8 +13927,8 @@ gdome_er_normalize (GdomeEntityReference * %GDOME_NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly. * Returns: the node removed. */ -GdomeNode * -gdome_er_removeChild (GdomeEntityReference *self, GdomeNode *oldChild, GdomeException *exc) +xmlNode * +gdome_er_removeChild (GdomeEntityReference *self, xmlNode *oldChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -13939,7 +13939,7 @@ gdome_er_removeChild (GdomeEntityReferen return NULL; } *exc = 0; - return ((Gdome_xml_EntityReference *)self)->vtab->super.removeChild ((GdomeNode *)self, oldChild, exc); + return ((Gdome_xml_EntityReference *)self)->vtab->super.removeChild ((xmlNode *)self, oldChild, exc); } /** * gdome_er_replaceChild: @@ -13963,8 +13963,8 @@ gdome_er_removeChild (GdomeEntityReferen * %GDOME_NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly. * Returns: the node replaced. */ -GdomeNode * -gdome_er_replaceChild (GdomeEntityReference *self, GdomeNode *newChild, GdomeNode *oldChild, GdomeException *exc) +xmlNode * +gdome_er_replaceChild (GdomeEntityReference *self, xmlNode *newChild, xmlNode *oldChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -13975,7 +13975,7 @@ gdome_er_replaceChild (GdomeEntityRefere return NULL; } *exc = 0; - return ((Gdome_xml_EntityReference *)self)->vtab->super.replaceChild ((GdomeNode *)self, newChild, oldChild, exc); + return ((Gdome_xml_EntityReference *)self)->vtab->super.replaceChild ((xmlNode *)self, newChild, oldChild, exc); } /** * gdome_er_addEventListener: @@ -14012,7 +14012,7 @@ gdome_er_addEventListener (GdomeEntityRe return; } *exc = 0; - ((Gdome_xml_EntityReference *)self)->vtab->super.addEventListener ((GdomeNode *)self, type, listener, useCapture, exc); + ((Gdome_xml_EntityReference *)self)->vtab->super.addEventListener ((xmlNode *)self, type, listener, useCapture, exc); } /** * gdome_er_removeEventListener: @@ -14047,7 +14047,7 @@ gdome_er_removeEventListener (GdomeEntit return; } *exc = 0; - ((Gdome_xml_EntityReference *)self)->vtab->super.removeEventListener ((GdomeNode *)self, type, listener, useCapture, exc); + ((Gdome_xml_EntityReference *)self)->vtab->super.removeEventListener ((xmlNode *)self, type, listener, useCapture, exc); } /** * gdome_er_dispatchEvent: @@ -14080,7 +14080,7 @@ gdome_er_dispatchEvent (GdomeEntityRefer return FALSE; } *exc = 0; - return ((Gdome_xml_EntityReference *)self)->vtab->super.dispatchEvent ((GdomeNode *)self, evt, exc); + return ((Gdome_xml_EntityReference *)self)->vtab->super.dispatchEvent ((xmlNode *)self, evt, exc); } /** * gdome_er_subTreeDispatchEvent: @@ -14112,7 +14112,7 @@ gdome_er_subTreeDispatchEvent (GdomeEnti return; } *exc = 0; - ((Gdome_xml_EntityReference *)self)->vtab->super.subTreeDispatchEvent ((GdomeNode *)self, evt, exc); + ((Gdome_xml_EntityReference *)self)->vtab->super.subTreeDispatchEvent ((xmlNode *)self, evt, exc); } /** * gdome_er_canAppend: @@ -14124,7 +14124,7 @@ gdome_er_subTreeDispatchEvent (GdomeEnti * Returns: %TRUE if @newChild can be added, %FALSE otherwise. */ GdomeBoolean -gdome_er_canAppend (GdomeEntityReference *self, GdomeNode *newChild, GdomeException *exc) +gdome_er_canAppend (GdomeEntityReference *self, xmlNode *newChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -14135,7 +14135,7 @@ gdome_er_canAppend (GdomeEntityReference return FALSE; } *exc = 0; - return ((Gdome_xml_EntityReference *)self)->vtab->super.canAppend ((GdomeNode *)self, newChild, exc); + return ((Gdome_xml_EntityReference *)self)->vtab->super.canAppend ((xmlNode *)self, newChild, exc); } /****************************************************************************** @@ -14230,7 +14230,7 @@ gdome_pi_attributes (GdomeProcessingInst return NULL; } *exc = 0; - return ((Gdome_xml_ProcessingInstruction *)self)->vtab->super.attributes ((GdomeNode *)self, exc); + return ((Gdome_xml_ProcessingInstruction *)self)->vtab->super.attributes ((xmlNode *)self, exc); } /** * gdome_pi_childNodes: @@ -14254,7 +14254,7 @@ gdome_pi_childNodes (GdomeProcessingInst return NULL; } *exc = 0; - return ((Gdome_xml_ProcessingInstruction *)self)->vtab->super.childNodes ((GdomeNode *)self, exc); + return ((Gdome_xml_ProcessingInstruction *)self)->vtab->super.childNodes ((xmlNode *)self, exc); } /** * gdome_pi_firstChild: @@ -14264,7 +14264,7 @@ gdome_pi_childNodes (GdomeProcessingInst * Returns: the first child of this node. If there is no such node, * this returns %NULL. */ -GdomeNode * +xmlNode * gdome_pi_firstChild (GdomeProcessingInstruction *self, GdomeException *exc) { if (self == NULL) { @@ -14276,7 +14276,7 @@ gdome_pi_firstChild (GdomeProcessingInst return NULL; } *exc = 0; - return ((Gdome_xml_ProcessingInstruction *)self)->vtab->super.firstChild ((GdomeNode *)self, exc); + return ((Gdome_xml_ProcessingInstruction *)self)->vtab->super.firstChild ((xmlNode *)self, exc); } /** * gdome_pi_lastChild: @@ -14286,7 +14286,7 @@ gdome_pi_firstChild (GdomeProcessingInst * Returns: the last child of this node. If there is no such node, * this returns %NULL. */ -GdomeNode * +xmlNode * gdome_pi_lastChild (GdomeProcessingInstruction *self, GdomeException *exc) { if (self == NULL) { @@ -14298,7 +14298,7 @@ gdome_pi_lastChild (GdomeProcessingInstr return NULL; } *exc = 0; - return ((Gdome_xml_ProcessingInstruction *)self)->vtab->super.lastChild ((GdomeNode *)self, exc); + return ((Gdome_xml_ProcessingInstruction *)self)->vtab->super.lastChild ((xmlNode *)self, exc); } /** * gdome_pi_localName: @@ -14322,7 +14322,7 @@ gdome_pi_localName (GdomeProcessingInstr return NULL; } *exc = 0; - return ((Gdome_xml_ProcessingInstruction *)self)->vtab->super.localName ((GdomeNode *)self, exc); + return ((Gdome_xml_ProcessingInstruction *)self)->vtab->super.localName ((xmlNode *)self, exc); } /** * gdome_pi_namespaceURI: @@ -14346,7 +14346,7 @@ gdome_pi_namespaceURI (GdomeProcessingIn return NULL; } *exc = 0; - return ((Gdome_xml_ProcessingInstruction *)self)->vtab->super.namespaceURI ((GdomeNode *)self, exc); + return ((Gdome_xml_ProcessingInstruction *)self)->vtab->super.namespaceURI ((xmlNode *)self, exc); } /** * gdome_pi_nextSibling: @@ -14356,7 +14356,7 @@ gdome_pi_namespaceURI (GdomeProcessingIn * Returns: the node immediately following this node. If there is no such * node, this returns %NULL. */ -GdomeNode * +xmlNode * gdome_pi_nextSibling (GdomeProcessingInstruction *self, GdomeException *exc) { if (self == NULL) { @@ -14368,7 +14368,7 @@ gdome_pi_nextSibling (GdomeProcessingIns return NULL; } *exc = 0; - return ((Gdome_xml_ProcessingInstruction *)self)->vtab->super.nextSibling ((GdomeNode *)self, exc); + return ((Gdome_xml_ProcessingInstruction *)self)->vtab->super.nextSibling ((xmlNode *)self, exc); } /** * gdome_pi_nodeName: @@ -14389,7 +14389,7 @@ gdome_pi_nodeName (GdomeProcessingInstru return NULL; } *exc = 0; - return ((Gdome_xml_ProcessingInstruction *)self)->vtab->super.nodeName ((GdomeNode *)self, exc); + return ((Gdome_xml_ProcessingInstruction *)self)->vtab->super.nodeName ((xmlNode *)self, exc); } /** * gdome_pi_nodeType: @@ -14411,7 +14411,7 @@ gdome_pi_nodeType (GdomeProcessingInstru return 0; } *exc = 0; - return ((Gdome_xml_ProcessingInstruction *)self)->vtab->super.nodeType ((GdomeNode *)self, exc); + return ((Gdome_xml_ProcessingInstruction *)self)->vtab->super.nodeType ((xmlNode *)self, exc); } /** * gdome_pi_nodeValue: @@ -14432,7 +14432,7 @@ gdome_pi_nodeValue (GdomeProcessingInstr return NULL; } *exc = 0; - return ((Gdome_xml_ProcessingInstruction *)self)->vtab->super.nodeValue ((GdomeNode *)self, exc); + return ((Gdome_xml_ProcessingInstruction *)self)->vtab->super.nodeValue ((xmlNode *)self, exc); } /** * gdome_pi_set_nodeValue: @@ -14456,7 +14456,7 @@ gdome_pi_set_nodeValue (GdomeProcessingI return; } *exc = 0; - ((Gdome_xml_ProcessingInstruction *)self)->vtab->super.set_nodeValue ((GdomeNode *)self, nodeValue, exc); + ((Gdome_xml_ProcessingInstruction *)self)->vtab->super.set_nodeValue ((xmlNode *)self, nodeValue, exc); } /** * gdome_pi_ownerDocument: @@ -14479,7 +14479,7 @@ gdome_pi_ownerDocument (GdomeProcessingI return NULL; } *exc = 0; - return ((Gdome_xml_ProcessingInstruction *)self)->vtab->super.ownerDocument ((GdomeNode *)self, exc); + return ((Gdome_xml_ProcessingInstruction *)self)->vtab->super.ownerDocument ((xmlNode *)self, exc); } /** * gdome_pi_parentNode: @@ -14491,7 +14491,7 @@ gdome_pi_ownerDocument (GdomeProcessingI * if a node has just been created and not yet added to the tree, or if it has * been removed from the tree, this is %NULL. */ -GdomeNode * +xmlNode * gdome_pi_parentNode (GdomeProcessingInstruction *self, GdomeException *exc) { if (self == NULL) { @@ -14503,7 +14503,7 @@ gdome_pi_parentNode (GdomeProcessingInst return NULL; } *exc = 0; - return ((Gdome_xml_ProcessingInstruction *)self)->vtab->super.parentNode ((GdomeNode *)self, exc); + return ((Gdome_xml_ProcessingInstruction *)self)->vtab->super.parentNode ((xmlNode *)self, exc); } /** * gdome_pi_prefix: @@ -14527,7 +14527,7 @@ gdome_pi_prefix (GdomeProcessingInstruct return NULL; } *exc = 0; - return ((Gdome_xml_ProcessingInstruction *)self)->vtab->super.prefix ((GdomeNode *)self, exc); + return ((Gdome_xml_ProcessingInstruction *)self)->vtab->super.prefix ((xmlNode *)self, exc); } /** * gdome_pi_set_prefix: @@ -14558,7 +14558,7 @@ gdome_pi_set_prefix (GdomeProcessingInst return; } *exc = 0; - ((Gdome_xml_ProcessingInstruction *)self)->vtab->super.set_prefix ((GdomeNode *)self, prefix, exc); + ((Gdome_xml_ProcessingInstruction *)self)->vtab->super.set_prefix ((xmlNode *)self, prefix, exc); } /** * gdome_pi_previousSibling: @@ -14568,7 +14568,7 @@ gdome_pi_set_prefix (GdomeProcessingInst * Returns: the node immediately preceding this node. If there is no such * node, this returns %NULL. */ -GdomeNode * +xmlNode * gdome_pi_previousSibling (GdomeProcessingInstruction *self, GdomeException *exc) { if (self == NULL) { @@ -14580,7 +14580,7 @@ gdome_pi_previousSibling (GdomeProcessin return NULL; } *exc = 0; - return ((Gdome_xml_ProcessingInstruction *)self)->vtab->super.previousSibling ((GdomeNode *)self, exc); + return ((Gdome_xml_ProcessingInstruction *)self)->vtab->super.previousSibling ((xmlNode *)self, exc); } /** * gdome_pi_ref: @@ -14601,7 +14601,7 @@ gdome_pi_ref (GdomeProcessingInstruction return; } *exc = 0; - ((Gdome_xml_ProcessingInstruction *)self)->vtab->super.ref ((GdomeNode *)self, exc); + ((Gdome_xml_ProcessingInstruction *)self)->vtab->super.ref ((xmlNode *)self, exc); } /** * gdome_pi_unref: @@ -14631,7 +14631,7 @@ gdome_pi_unref (GdomeProcessingInstructi } return; } - ((Gdome_xml_ProcessingInstruction *)self)->vtab->super.unref ((GdomeNode *)self, exc); + ((Gdome_xml_ProcessingInstruction *)self)->vtab->super.unref ((xmlNode *)self, exc); } /** * gdome_pi_query_interface: @@ -14654,7 +14654,7 @@ gdome_pi_query_interface (GdomeProcessin return NULL; } *exc = 0; - return ((Gdome_xml_ProcessingInstruction *)self)->vtab->super.query_interface ((GdomeNode *)self, interface, exc); + return ((Gdome_xml_ProcessingInstruction *)self)->vtab->super.query_interface ((xmlNode *)self, interface, exc); } /** * gdome_pi_appendChild: @@ -14675,8 +14675,8 @@ gdome_pi_query_interface (GdomeProcessin * %GDOME_NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly. * Returns: the node added. */ -GdomeNode * -gdome_pi_appendChild (GdomeProcessingInstruction *self, GdomeNode *newChild, GdomeException *exc) +xmlNode * +gdome_pi_appendChild (GdomeProcessingInstruction *self, xmlNode *newChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -14687,7 +14687,7 @@ gdome_pi_appendChild (GdomeProcessingIns return NULL; } *exc = 0; - return ((Gdome_xml_ProcessingInstruction *)self)->vtab->super.appendChild ((GdomeNode *)self, newChild, exc); + return ((Gdome_xml_ProcessingInstruction *)self)->vtab->super.appendChild ((xmlNode *)self, newChild, exc); } /** * gdome_pi_cloneNode: @@ -14707,7 +14707,7 @@ gdome_pi_appendChild (GdomeProcessingIns * supported. * Returns: the duplicate node. */ -GdomeNode * +xmlNode * gdome_pi_cloneNode (GdomeProcessingInstruction *self, GdomeBoolean deep, GdomeException *exc) { if (self == NULL) { @@ -14719,7 +14719,7 @@ gdome_pi_cloneNode (GdomeProcessingInstr return NULL; } *exc = 0; - return ((Gdome_xml_ProcessingInstruction *)self)->vtab->super.cloneNode ((GdomeNode *)self, deep, exc); + return ((Gdome_xml_ProcessingInstruction *)self)->vtab->super.cloneNode ((xmlNode *)self, deep, exc); } /** * gdome_pi_hasAttributes: @@ -14740,7 +14740,7 @@ gdome_pi_hasAttributes (GdomeProcessingI return FALSE; } *exc = 0; - return ((Gdome_xml_ProcessingInstruction *)self)->vtab->super.hasAttributes ((GdomeNode *)self, exc); + return ((Gdome_xml_ProcessingInstruction *)self)->vtab->super.hasAttributes ((xmlNode *)self, exc); } /** * gdome_pi_hasChildNodes: @@ -14761,7 +14761,7 @@ gdome_pi_hasChildNodes (GdomeProcessingI return FALSE; } *exc = 0; - return ((Gdome_xml_ProcessingInstruction *)self)->vtab->super.hasChildNodes ((GdomeNode *)self, exc); + return ((Gdome_xml_ProcessingInstruction *)self)->vtab->super.hasChildNodes ((xmlNode *)self, exc); } /** * gdome_pi_insertBefore: @@ -14786,8 +14786,8 @@ gdome_pi_hasChildNodes (GdomeProcessingI * %GDOME_NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly. * Returns: the node being inserted. */ -GdomeNode * -gdome_pi_insertBefore (GdomeProcessingInstruction *self, GdomeNode *newChild, GdomeNode *refChild, GdomeException *exc) +xmlNode * +gdome_pi_insertBefore (GdomeProcessingInstruction *self, xmlNode *newChild, xmlNode *refChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -14798,7 +14798,7 @@ gdome_pi_insertBefore (GdomeProcessingIn return NULL; } *exc = 0; - return ((Gdome_xml_ProcessingInstruction *)self)->vtab->super.insertBefore ((GdomeNode *)self, newChild, refChild, exc); + return ((Gdome_xml_ProcessingInstruction *)self)->vtab->super.insertBefore ((xmlNode *)self, newChild, refChild, exc); } /** * gdome_pi_isSupported: @@ -14827,7 +14827,7 @@ gdome_pi_isSupported (GdomeProcessingIns return FALSE; } *exc = 0; - return ((Gdome_xml_ProcessingInstruction *)self)->vtab->super.isSupported ((GdomeNode *)self, feature, version, exc); + return ((Gdome_xml_ProcessingInstruction *)self)->vtab->super.isSupported ((xmlNode *)self, feature, version, exc); } /** * gdome_pi_normalize: @@ -14852,7 +14852,7 @@ gdome_pi_normalize (GdomeProcessingInstr return; } *exc = 0; - ((Gdome_xml_ProcessingInstruction *)self)->vtab->super.normalize ((GdomeNode *)self, exc); + ((Gdome_xml_ProcessingInstruction *)self)->vtab->super.normalize ((xmlNode *)self, exc); } /** * gdome_pi_removeChild: @@ -14867,8 +14867,8 @@ gdome_pi_normalize (GdomeProcessingInstr * %GDOME_NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly. * Returns: the node removed. */ -GdomeNode * -gdome_pi_removeChild (GdomeProcessingInstruction *self, GdomeNode *oldChild, GdomeException *exc) +xmlNode * +gdome_pi_removeChild (GdomeProcessingInstruction *self, xmlNode *oldChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -14879,7 +14879,7 @@ gdome_pi_removeChild (GdomeProcessingIns return NULL; } *exc = 0; - return ((Gdome_xml_ProcessingInstruction *)self)->vtab->super.removeChild ((GdomeNode *)self, oldChild, exc); + return ((Gdome_xml_ProcessingInstruction *)self)->vtab->super.removeChild ((xmlNode *)self, oldChild, exc); } /** * gdome_pi_replaceChild: @@ -14903,8 +14903,8 @@ gdome_pi_removeChild (GdomeProcessingIns * %GDOME_NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly. * Returns: the node replaced. */ -GdomeNode * -gdome_pi_replaceChild (GdomeProcessingInstruction *self, GdomeNode *newChild, GdomeNode *oldChild, GdomeException *exc) +xmlNode * +gdome_pi_replaceChild (GdomeProcessingInstruction *self, xmlNode *newChild, xmlNode *oldChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -14915,7 +14915,7 @@ gdome_pi_replaceChild (GdomeProcessingIn return NULL; } *exc = 0; - return ((Gdome_xml_ProcessingInstruction *)self)->vtab->super.replaceChild ((GdomeNode *)self, newChild, oldChild, exc); + return ((Gdome_xml_ProcessingInstruction *)self)->vtab->super.replaceChild ((xmlNode *)self, newChild, oldChild, exc); } /** * gdome_pi_addEventListener: @@ -14952,7 +14952,7 @@ gdome_pi_addEventListener (GdomeProcessi return; } *exc = 0; - ((Gdome_xml_ProcessingInstruction *)self)->vtab->super.addEventListener ((GdomeNode *)self, type, listener, useCapture, exc); + ((Gdome_xml_ProcessingInstruction *)self)->vtab->super.addEventListener ((xmlNode *)self, type, listener, useCapture, exc); } /** * gdome_pi_removeEventListener: @@ -14987,7 +14987,7 @@ gdome_pi_removeEventListener (GdomeProce return; } *exc = 0; - ((Gdome_xml_ProcessingInstruction *)self)->vtab->super.removeEventListener ((GdomeNode *)self, type, listener, useCapture, exc); + ((Gdome_xml_ProcessingInstruction *)self)->vtab->super.removeEventListener ((xmlNode *)self, type, listener, useCapture, exc); } /** * gdome_pi_dispatchEvent: @@ -15020,7 +15020,7 @@ gdome_pi_dispatchEvent (GdomeProcessingI return FALSE; } *exc = 0; - return ((Gdome_xml_ProcessingInstruction *)self)->vtab->super.dispatchEvent ((GdomeNode *)self, evt, exc); + return ((Gdome_xml_ProcessingInstruction *)self)->vtab->super.dispatchEvent ((xmlNode *)self, evt, exc); } /** * gdome_pi_subTreeDispatchEvent: @@ -15052,7 +15052,7 @@ gdome_pi_subTreeDispatchEvent (GdomeProc return; } *exc = 0; - ((Gdome_xml_ProcessingInstruction *)self)->vtab->super.subTreeDispatchEvent ((GdomeNode *)self, evt, exc); + ((Gdome_xml_ProcessingInstruction *)self)->vtab->super.subTreeDispatchEvent ((xmlNode *)self, evt, exc); } /** * gdome_pi_canAppend: @@ -15064,7 +15064,7 @@ gdome_pi_subTreeDispatchEvent (GdomeProc * Returns: %TRUE if @newChild can be added, %FALSE otherwise. */ GdomeBoolean -gdome_pi_canAppend (GdomeProcessingInstruction *self, GdomeNode *newChild, GdomeException *exc) +gdome_pi_canAppend (GdomeProcessingInstruction *self, xmlNode *newChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -15075,7 +15075,7 @@ gdome_pi_canAppend (GdomeProcessingInstr return FALSE; } *exc = 0; - return ((Gdome_xml_ProcessingInstruction *)self)->vtab->super.canAppend ((GdomeNode *)self, newChild, exc); + return ((Gdome_xml_ProcessingInstruction *)self)->vtab->super.canAppend ((xmlNode *)self, newChild, exc); } /****************************************************************************** @@ -15123,7 +15123,7 @@ gdome_xpns_attributes (GdomeXPathNamespa return NULL; } *exc = 0; - return ((Gdome_xml_XPathNamespace *)self)->vtab->super.attributes ((GdomeNode *)self, exc); + return ((Gdome_xml_XPathNamespace *)self)->vtab->super.attributes ((xmlNode *)self, exc); } /** * gdome_xpns_childNodes: @@ -15147,7 +15147,7 @@ gdome_xpns_childNodes (GdomeXPathNamespa return NULL; } *exc = 0; - return ((Gdome_xml_XPathNamespace *)self)->vtab->super.childNodes ((GdomeNode *)self, exc); + return ((Gdome_xml_XPathNamespace *)self)->vtab->super.childNodes ((xmlNode *)self, exc); } /** * gdome_xpns_firstChild: @@ -15157,7 +15157,7 @@ gdome_xpns_childNodes (GdomeXPathNamespa * Returns: the first child of this node. If there is no such node, * this returns %NULL. */ -GdomeNode * +xmlNode * gdome_xpns_firstChild (GdomeXPathNamespace *self, GdomeException *exc) { if (self == NULL) { @@ -15169,7 +15169,7 @@ gdome_xpns_firstChild (GdomeXPathNamespa return NULL; } *exc = 0; - return ((Gdome_xml_XPathNamespace *)self)->vtab->super.firstChild ((GdomeNode *)self, exc); + return ((Gdome_xml_XPathNamespace *)self)->vtab->super.firstChild ((xmlNode *)self, exc); } /** * gdome_xpns_lastChild: @@ -15179,7 +15179,7 @@ gdome_xpns_firstChild (GdomeXPathNamespa * Returns: the last child of this node. If there is no such node, * this returns %NULL. */ -GdomeNode * +xmlNode * gdome_xpns_lastChild (GdomeXPathNamespace *self, GdomeException *exc) { if (self == NULL) { @@ -15191,7 +15191,7 @@ gdome_xpns_lastChild (GdomeXPathNamespac return NULL; } *exc = 0; - return ((Gdome_xml_XPathNamespace *)self)->vtab->super.lastChild ((GdomeNode *)self, exc); + return ((Gdome_xml_XPathNamespace *)self)->vtab->super.lastChild ((xmlNode *)self, exc); } /** * gdome_xpns_localName: @@ -15215,7 +15215,7 @@ gdome_xpns_localName (GdomeXPathNamespac return NULL; } *exc = 0; - return ((Gdome_xml_XPathNamespace *)self)->vtab->super.localName ((GdomeNode *)self, exc); + return ((Gdome_xml_XPathNamespace *)self)->vtab->super.localName ((xmlNode *)self, exc); } /** * gdome_xpns_namespaceURI: @@ -15239,7 +15239,7 @@ gdome_xpns_namespaceURI (GdomeXPathNames return NULL; } *exc = 0; - return ((Gdome_xml_XPathNamespace *)self)->vtab->super.namespaceURI ((GdomeNode *)self, exc); + return ((Gdome_xml_XPathNamespace *)self)->vtab->super.namespaceURI ((xmlNode *)self, exc); } /** * gdome_xpns_nextSibling: @@ -15249,7 +15249,7 @@ gdome_xpns_namespaceURI (GdomeXPathNames * Returns: the node immediately following this node. If there is no such * node, this returns %NULL. */ -GdomeNode * +xmlNode * gdome_xpns_nextSibling (GdomeXPathNamespace *self, GdomeException *exc) { if (self == NULL) { @@ -15261,7 +15261,7 @@ gdome_xpns_nextSibling (GdomeXPathNamesp return NULL; } *exc = 0; - return ((Gdome_xml_XPathNamespace *)self)->vtab->super.nextSibling ((GdomeNode *)self, exc); + return ((Gdome_xml_XPathNamespace *)self)->vtab->super.nextSibling ((xmlNode *)self, exc); } /** * gdome_xpns_nodeName: @@ -15282,7 +15282,7 @@ gdome_xpns_nodeName (GdomeXPathNamespace return NULL; } *exc = 0; - return ((Gdome_xml_XPathNamespace *)self)->vtab->super.nodeName ((GdomeNode *)self, exc); + return ((Gdome_xml_XPathNamespace *)self)->vtab->super.nodeName ((xmlNode *)self, exc); } /** * gdome_xpns_nodeType: @@ -15304,7 +15304,7 @@ gdome_xpns_nodeType (GdomeXPathNamespace return 0; } *exc = 0; - return ((Gdome_xml_XPathNamespace *)self)->vtab->super.nodeType ((GdomeNode *)self, exc); + return ((Gdome_xml_XPathNamespace *)self)->vtab->super.nodeType ((xmlNode *)self, exc); } /** * gdome_xpns_nodeValue: @@ -15325,7 +15325,7 @@ gdome_xpns_nodeValue (GdomeXPathNamespac return NULL; } *exc = 0; - return ((Gdome_xml_XPathNamespace *)self)->vtab->super.nodeValue ((GdomeNode *)self, exc); + return ((Gdome_xml_XPathNamespace *)self)->vtab->super.nodeValue ((xmlNode *)self, exc); } /** * gdome_xpns_set_nodeValue: @@ -15349,7 +15349,7 @@ gdome_xpns_set_nodeValue (GdomeXPathName return; } *exc = 0; - ((Gdome_xml_XPathNamespace *)self)->vtab->super.set_nodeValue ((GdomeNode *)self, nodeValue, exc); + ((Gdome_xml_XPathNamespace *)self)->vtab->super.set_nodeValue ((xmlNode *)self, nodeValue, exc); } /** * gdome_xpns_ownerDocument: @@ -15372,7 +15372,7 @@ gdome_xpns_ownerDocument (GdomeXPathName return NULL; } *exc = 0; - return ((Gdome_xml_XPathNamespace *)self)->vtab->super.ownerDocument ((GdomeNode *)self, exc); + return ((Gdome_xml_XPathNamespace *)self)->vtab->super.ownerDocument ((xmlNode *)self, exc); } /** * gdome_xpns_parentNode: @@ -15384,7 +15384,7 @@ gdome_xpns_ownerDocument (GdomeXPathName * if a node has just been created and not yet added to the tree, or if it has * been removed from the tree, this is %NULL. */ -GdomeNode * +xmlNode * gdome_xpns_parentNode (GdomeXPathNamespace *self, GdomeException *exc) { if (self == NULL) { @@ -15396,7 +15396,7 @@ gdome_xpns_parentNode (GdomeXPathNamespa return NULL; } *exc = 0; - return ((Gdome_xml_XPathNamespace *)self)->vtab->super.parentNode ((GdomeNode *)self, exc); + return ((Gdome_xml_XPathNamespace *)self)->vtab->super.parentNode ((xmlNode *)self, exc); } /** * gdome_xpns_prefix: @@ -15420,7 +15420,7 @@ gdome_xpns_prefix (GdomeXPathNamespace * return NULL; } *exc = 0; - return ((Gdome_xml_XPathNamespace *)self)->vtab->super.prefix ((GdomeNode *)self, exc); + return ((Gdome_xml_XPathNamespace *)self)->vtab->super.prefix ((xmlNode *)self, exc); } /** * gdome_xpns_set_prefix: @@ -15451,7 +15451,7 @@ gdome_xpns_set_prefix (GdomeXPathNamespa return; } *exc = 0; - ((Gdome_xml_XPathNamespace *)self)->vtab->super.set_prefix ((GdomeNode *)self, prefix, exc); + ((Gdome_xml_XPathNamespace *)self)->vtab->super.set_prefix ((xmlNode *)self, prefix, exc); } /** * gdome_xpns_previousSibling: @@ -15461,7 +15461,7 @@ gdome_xpns_set_prefix (GdomeXPathNamespa * Returns: the node immediately preceding this node. If there is no such * node, this returns %NULL. */ -GdomeNode * +xmlNode * gdome_xpns_previousSibling (GdomeXPathNamespace *self, GdomeException *exc) { if (self == NULL) { @@ -15473,7 +15473,7 @@ gdome_xpns_previousSibling (GdomeXPathNa return NULL; } *exc = 0; - return ((Gdome_xml_XPathNamespace *)self)->vtab->super.previousSibling ((GdomeNode *)self, exc); + return ((Gdome_xml_XPathNamespace *)self)->vtab->super.previousSibling ((xmlNode *)self, exc); } /** * gdome_xpns_ref: @@ -15494,7 +15494,7 @@ gdome_xpns_ref (GdomeXPathNamespace *sel return; } *exc = 0; - ((Gdome_xml_XPathNamespace *)self)->vtab->super.ref ((GdomeNode *)self, exc); + ((Gdome_xml_XPathNamespace *)self)->vtab->super.ref ((xmlNode *)self, exc); } /** * gdome_xpns_unref: @@ -15524,7 +15524,7 @@ gdome_xpns_unref (GdomeXPathNamespace *s } return; } - ((Gdome_xml_XPathNamespace *)self)->vtab->super.unref ((GdomeNode *)self, exc); + ((Gdome_xml_XPathNamespace *)self)->vtab->super.unref ((xmlNode *)self, exc); } /** * gdome_xpns_query_interface: @@ -15547,7 +15547,7 @@ gdome_xpns_query_interface (GdomeXPathNa return NULL; } *exc = 0; - return ((Gdome_xml_XPathNamespace *)self)->vtab->super.query_interface ((GdomeNode *)self, interface, exc); + return ((Gdome_xml_XPathNamespace *)self)->vtab->super.query_interface ((xmlNode *)self, interface, exc); } /** * gdome_xpns_appendChild: @@ -15568,8 +15568,8 @@ gdome_xpns_query_interface (GdomeXPathNa * %GDOME_NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly. * Returns: the node added. */ -GdomeNode * -gdome_xpns_appendChild (GdomeXPathNamespace *self, GdomeNode *newChild, GdomeException *exc) +xmlNode * +gdome_xpns_appendChild (GdomeXPathNamespace *self, xmlNode *newChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -15580,7 +15580,7 @@ gdome_xpns_appendChild (GdomeXPathNamesp return NULL; } *exc = 0; - return ((Gdome_xml_XPathNamespace *)self)->vtab->super.appendChild ((GdomeNode *)self, newChild, exc); + return ((Gdome_xml_XPathNamespace *)self)->vtab->super.appendChild ((xmlNode *)self, newChild, exc); } /** * gdome_xpns_cloneNode: @@ -15600,7 +15600,7 @@ gdome_xpns_appendChild (GdomeXPathNamesp * supported. * Returns: the duplicate node. */ -GdomeNode * +xmlNode * gdome_xpns_cloneNode (GdomeXPathNamespace *self, GdomeBoolean deep, GdomeException *exc) { if (self == NULL) { @@ -15612,7 +15612,7 @@ gdome_xpns_cloneNode (GdomeXPathNamespac return NULL; } *exc = 0; - return ((Gdome_xml_XPathNamespace *)self)->vtab->super.cloneNode ((GdomeNode *)self, deep, exc); + return ((Gdome_xml_XPathNamespace *)self)->vtab->super.cloneNode ((xmlNode *)self, deep, exc); } /** * gdome_xpns_hasAttributes: @@ -15633,7 +15633,7 @@ gdome_xpns_hasAttributes (GdomeXPathName return FALSE; } *exc = 0; - return ((Gdome_xml_XPathNamespace *)self)->vtab->super.hasAttributes ((GdomeNode *)self, exc); + return ((Gdome_xml_XPathNamespace *)self)->vtab->super.hasAttributes ((xmlNode *)self, exc); } /** * gdome_xpns_hasChildNodes: @@ -15654,7 +15654,7 @@ gdome_xpns_hasChildNodes (GdomeXPathName return FALSE; } *exc = 0; - return ((Gdome_xml_XPathNamespace *)self)->vtab->super.hasChildNodes ((GdomeNode *)self, exc); + return ((Gdome_xml_XPathNamespace *)self)->vtab->super.hasChildNodes ((xmlNode *)self, exc); } /** * gdome_xpns_insertBefore: @@ -15679,8 +15679,8 @@ gdome_xpns_hasChildNodes (GdomeXPathName * %GDOME_NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly. * Returns: the node being inserted. */ -GdomeNode * -gdome_xpns_insertBefore (GdomeXPathNamespace *self, GdomeNode *newChild, GdomeNode *refChild, GdomeException *exc) +xmlNode * +gdome_xpns_insertBefore (GdomeXPathNamespace *self, xmlNode *newChild, xmlNode *refChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -15691,7 +15691,7 @@ gdome_xpns_insertBefore (GdomeXPathNames return NULL; } *exc = 0; - return ((Gdome_xml_XPathNamespace *)self)->vtab->super.insertBefore ((GdomeNode *)self, newChild, refChild, exc); + return ((Gdome_xml_XPathNamespace *)self)->vtab->super.insertBefore ((xmlNode *)self, newChild, refChild, exc); } /** * gdome_xpns_isSupported: @@ -15720,7 +15720,7 @@ gdome_xpns_isSupported (GdomeXPathNamesp return FALSE; } *exc = 0; - return ((Gdome_xml_XPathNamespace *)self)->vtab->super.isSupported ((GdomeNode *)self, feature, version, exc); + return ((Gdome_xml_XPathNamespace *)self)->vtab->super.isSupported ((xmlNode *)self, feature, version, exc); } /** * gdome_xpns_normalize: @@ -15745,7 +15745,7 @@ gdome_xpns_normalize (GdomeXPathNamespac return; } *exc = 0; - ((Gdome_xml_XPathNamespace *)self)->vtab->super.normalize ((GdomeNode *)self, exc); + ((Gdome_xml_XPathNamespace *)self)->vtab->super.normalize ((xmlNode *)self, exc); } /** * gdome_xpns_removeChild: @@ -15760,8 +15760,8 @@ gdome_xpns_normalize (GdomeXPathNamespac * %GDOME_NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly. * Returns: the node removed. */ -GdomeNode * -gdome_xpns_removeChild (GdomeXPathNamespace *self, GdomeNode *oldChild, GdomeException *exc) +xmlNode * +gdome_xpns_removeChild (GdomeXPathNamespace *self, xmlNode *oldChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -15772,7 +15772,7 @@ gdome_xpns_removeChild (GdomeXPathNamesp return NULL; } *exc = 0; - return ((Gdome_xml_XPathNamespace *)self)->vtab->super.removeChild ((GdomeNode *)self, oldChild, exc); + return ((Gdome_xml_XPathNamespace *)self)->vtab->super.removeChild ((xmlNode *)self, oldChild, exc); } /** * gdome_xpns_replaceChild: @@ -15796,8 +15796,8 @@ gdome_xpns_removeChild (GdomeXPathNamesp * %GDOME_NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly. * Returns: the node replaced. */ -GdomeNode * -gdome_xpns_replaceChild (GdomeXPathNamespace *self, GdomeNode *newChild, GdomeNode *oldChild, GdomeException *exc) +xmlNode * +gdome_xpns_replaceChild (GdomeXPathNamespace *self, xmlNode *newChild, xmlNode *oldChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -15808,7 +15808,7 @@ gdome_xpns_replaceChild (GdomeXPathNames return NULL; } *exc = 0; - return ((Gdome_xml_XPathNamespace *)self)->vtab->super.replaceChild ((GdomeNode *)self, newChild, oldChild, exc); + return ((Gdome_xml_XPathNamespace *)self)->vtab->super.replaceChild ((xmlNode *)self, newChild, oldChild, exc); } /** * gdome_xpns_addEventListener: @@ -15845,7 +15845,7 @@ gdome_xpns_addEventListener (GdomeXPathN return; } *exc = 0; - ((Gdome_xml_XPathNamespace *)self)->vtab->super.addEventListener ((GdomeNode *)self, type, listener, useCapture, exc); + ((Gdome_xml_XPathNamespace *)self)->vtab->super.addEventListener ((xmlNode *)self, type, listener, useCapture, exc); } /** * gdome_xpns_removeEventListener: @@ -15880,7 +15880,7 @@ gdome_xpns_removeEventListener (GdomeXPa return; } *exc = 0; - ((Gdome_xml_XPathNamespace *)self)->vtab->super.removeEventListener ((GdomeNode *)self, type, listener, useCapture, exc); + ((Gdome_xml_XPathNamespace *)self)->vtab->super.removeEventListener ((xmlNode *)self, type, listener, useCapture, exc); } /** * gdome_xpns_dispatchEvent: @@ -15913,7 +15913,7 @@ gdome_xpns_dispatchEvent (GdomeXPathName return FALSE; } *exc = 0; - return ((Gdome_xml_XPathNamespace *)self)->vtab->super.dispatchEvent ((GdomeNode *)self, evt, exc); + return ((Gdome_xml_XPathNamespace *)self)->vtab->super.dispatchEvent ((xmlNode *)self, evt, exc); } /** * gdome_xpns_subTreeDispatchEvent: @@ -15945,7 +15945,7 @@ gdome_xpns_subTreeDispatchEvent (GdomeXP return; } *exc = 0; - ((Gdome_xml_XPathNamespace *)self)->vtab->super.subTreeDispatchEvent ((GdomeNode *)self, evt, exc); + ((Gdome_xml_XPathNamespace *)self)->vtab->super.subTreeDispatchEvent ((xmlNode *)self, evt, exc); } /** * gdome_xpns_canAppend: @@ -15957,7 +15957,7 @@ gdome_xpns_subTreeDispatchEvent (GdomeXP * Returns: %TRUE if @newChild can be added, %FALSE otherwise. */ GdomeBoolean -gdome_xpns_canAppend (GdomeXPathNamespace *self, GdomeNode *newChild, GdomeException *exc) +gdome_xpns_canAppend (GdomeXPathNamespace *self, xmlNode *newChild, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -15968,7 +15968,7 @@ gdome_xpns_canAppend (GdomeXPathNamespac return FALSE; } *exc = 0; - return ((Gdome_xml_XPathNamespace *)self)->vtab->super.canAppend ((GdomeNode *)self, newChild, exc); + return ((Gdome_xml_XPathNamespace *)self)->vtab->super.canAppend ((xmlNode *)self, newChild, exc); } /****************************************************************************** @@ -16081,7 +16081,7 @@ gdome_nl_query_interface (GdomeNodeList * Returns: the indexth item in the collection. If @index is greater than or * equal to the number of nodes in the list, this returns %NULL. */ -GdomeNode * +xmlNode * gdome_nl_item (GdomeNodeList *self, gulong index, GdomeException *exc) { if (self == NULL) { @@ -16206,7 +16206,7 @@ gdome_nnm_query_interface (GdomeNamedNod * Returns: a Node (of any type) with the specified nodeName, or %NULL if it * does not identify any node in this map. */ -GdomeNode * +xmlNode * gdome_nnm_getNamedItem (GdomeNamedNodeMap *self, GdomeDOMString *name, GdomeException *exc) { if (self == NULL) { @@ -16231,7 +16231,7 @@ gdome_nnm_getNamedItem (GdomeNamedNodeMa * Returns: a Node (of any type) with the specified local name and namespace * URI, or %NULL if they do not identify any node in this map. */ -GdomeNode * +xmlNode * gdome_nnm_getNamedItemNS (GdomeNamedNodeMap *self, GdomeDOMString *namespaceURI, GdomeDOMString *localName, GdomeException *exc) { if (self == NULL) { @@ -16254,7 +16254,7 @@ gdome_nnm_getNamedItemNS (GdomeNamedNode * Returns: the indexth item in the map. If index is greater than or equal to * the number of nodes in this map, this returns %NULL. */ -GdomeNode * +xmlNode * gdome_nnm_item (GdomeNamedNodeMap *self, gulong index, GdomeException *exc) { if (self == NULL) { @@ -16283,7 +16283,7 @@ gdome_nnm_item (GdomeNamedNodeMap *self, * %GDOME_NO_MODIFICATION_ALLOWED_ERR: Raised if this map is readonly. * Returns: the node removed from this map if a node with such a name exists. */ -GdomeNode * +xmlNode * gdome_nnm_removeNamedItem (GdomeNamedNodeMap *self, GdomeDOMString *name, GdomeException *exc) { if (self == NULL) { @@ -16315,7 +16315,7 @@ gdome_nnm_removeNamedItem (GdomeNamedNod * Returns: the node removed from this map if a node with such a local name and * namespace URI exists. */ -GdomeNode * +xmlNode * gdome_nnm_removeNamedItemNS (GdomeNamedNodeMap *self, GdomeDOMString *namespaceURI, GdomeDOMString *localName, GdomeException *exc) { if (self == NULL) { @@ -16351,8 +16351,8 @@ gdome_nnm_removeNamedItemNS (GdomeNamedN * insert something other than an Attr node into an Element's map of * attributes, or a non-Entity node into the DocumentType's map of Entities. */ -GdomeNode * -gdome_nnm_setNamedItem (GdomeNamedNodeMap *self, GdomeNode *arg, GdomeException *exc) +xmlNode * +gdome_nnm_setNamedItem (GdomeNamedNodeMap *self, xmlNode *arg, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR; @@ -16389,8 +16389,8 @@ gdome_nnm_setNamedItem (GdomeNamedNodeMa * insert something other than an Attr node into an Element's map of * attributes, or a non-Entity node into the DocumentType's map of Entities. */ -GdomeNode * -gdome_nnm_setNamedItemNS (GdomeNamedNodeMap *self, GdomeNode *arg, GdomeException *exc) +xmlNode * +gdome_nnm_setNamedItemNS (GdomeNamedNodeMap *self, xmlNode *arg, GdomeException *exc) { if (self == NULL) { *exc = GDOME_NULL_POINTER_ERR;