KHTML
Go to the documentation of this file.
26 #include "xml/dom_nodeimpl.h"
27 #include "xml/dom_elementimpl.h"
28 #include "xml/dom_nodelistimpl.h"
44 switch ( node->nodeType() ) {
50 return node->nodeValue().string();
56 for ( NodeImpl *cur = node->firstChild(); cur; cur = cur->traverseNextNode(node) ) {
58 int type = cur->nodeType();
95 n = n->previousSibling();
114 DOM::NodeImpl *res = 0;
117 res = static_cast<DOM::AttrImpl*>(node)->ownerElement();
119 res = node->parentNode();
126 DOM::NodeImpl *res = 0;
128 res = node->firstChild();
134 DOM::NodeImpl *res = 0;
136 res = node->lastChild();
142 DOM::NodeImpl *res = 0;
145 res = static_cast<DOM::AttrImpl*>(node)->ownerElement()->firstChild();
147 res = node->nextSibling();
This file is part of the KDE documentation.
Documentation copyright © 1996-2013 The KDE developers.
Generated on Tue Apr 16 2013 21:10:50 by
doxygen 1.8.3.1 written
by
Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.