![]() |
Qt 6.x
The Qt SDK
|
\reentrant More...
#include <qdom.h>
Public Member Functions | |
QDomNodeList () | |
Creates an empty node list. | |
QDomNodeList (const QDomNodeList &) | |
Constructs a copy of n. | |
QDomNodeList & | operator= (const QDomNodeList &) |
Assigns n to this node list. | |
bool | operator== (const QDomNodeList &) const |
Returns true if the node list n and this node list are equal; otherwise returns false . | |
bool | operator!= (const QDomNodeList &) const |
Returns true the node list n and this node list are not equal; otherwise returns false . | |
~QDomNodeList () | |
Destroys the object and frees its resources. | |
QDomNode | item (int index) const |
Returns the node at position index. | |
QDomNode | at (int index) const |
This function is provided for Qt API consistency. | |
int | length () const |
Returns the number of nodes in the list. | |
int | count () const |
This function is provided for Qt API consistency. | |
int | size () const |
This function is provided for Qt API consistency. | |
bool | isEmpty () const |
Returns true if the list contains no items; otherwise returns false . | |
Friends | |
class | QDomNode |
class | QDomElement |
class | QDomDocument |
\reentrant
The QDomNodeList class is a list of QDomNode objects.
\inmodule QtXml
Lists can be obtained by QDomDocument::elementsByTagName() and QDomNode::childNodes(). The Document Object Model (DOM) requires these lists to be "live": whenever you change the underlying document, the contents of the list will get updated.
You can get a particular node from the list with item(). The number of items in the list is returned by length().
For further information about the Document Object Model see \l{http://www.w3.org/TR/REC-DOM-Level-1/}{Level 1} and \l{http://www.w3.org/TR/DOM-Level-2-Core/}{Level 2 Core}. For a more general introduction of the DOM implementation see the QDomDocument documentation.
QDomNodeList::QDomNodeList | ( | const QDomNodeList & | n | ) |
Constructs a copy of n.
Definition at line 782 of file qdom.cpp.
References QBasicAtomicInteger< T >::ref(), and QDomNodeListPrivate::ref.
QDomNodeList::~QDomNodeList | ( | ) |
Destroys the object and frees its resources.
Definition at line 827 of file qdom.cpp.
References QBasicAtomicInteger< T >::deref(), and QDomNodeListPrivate::ref.
|
inline |
|
inline |
|
inline |
QDomNode QDomNodeList::item | ( | int | index | ) | const |
Returns the node at position index.
If index is negative or if index >= length() then a null node is returned (i.e. a node for which QDomNode::isNull() returns true).
Definition at line 842 of file qdom.cpp.
References QDomNodeListPrivate::item(), and QDomNode.
int QDomNodeList::length | ( | ) | const |
Returns the number of nodes in the list.
Definition at line 853 of file qdom.cpp.
References QDomNodeListPrivate::length().
bool QDomNodeList::operator!= | ( | const QDomNodeList & | n | ) | const |
Returns true
the node list n and this node list are not equal; otherwise returns false
.
Definition at line 819 of file qdom.cpp.
References operator==().
QDomNodeList & QDomNodeList::operator= | ( | const QDomNodeList & | n | ) |
Assigns n to this node list.
Definition at line 792 of file qdom.cpp.
References QBasicAtomicInteger< T >::deref(), QBasicAtomicInteger< T >::ref(), and QDomNodeListPrivate::ref.
bool QDomNodeList::operator== | ( | const QDomNodeList & | n | ) | const |
Returns true
if the node list n and this node list are equal; otherwise returns false
.
Definition at line 806 of file qdom.cpp.
Referenced by operator!=().
|
inline |
|
friend |
|
friend |