![]() |
Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
|
\reentrant More...
#include <qdom.h>
Collaboration diagram for QDomNodeList:Public Member Functions | |
| QDomNodeList () | |
| Creates an empty node list. | |
| QDomNodeList (const QDomNodeList &nodeList) | |
| Constructs a copy of nodeList. | |
| QDomNodeList & | operator= (const QDomNodeList &other) |
| Assigns other to this node list. | |
| bool | operator== (const QDomNodeList &other) const |
Returns true if the node list other and this node list are equal; otherwise returns false. | |
| bool | operator!= (const QDomNodeList &other) const |
Returns true the node list other 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 & | nodeList | ) |
| QDomNodeList::~QDomNodeList | ( | ) |
|
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).
| int QDomNodeList::length | ( | ) | const |
Returns the number of nodes in the list.
Definition at line 852 of file qdom.cpp.
Referenced by testing.tools.encode_pdf_filter._PngIdatPdfStream::write().
Here is the caller graph for this function:| bool QDomNodeList::operator!= | ( | const QDomNodeList & | other | ) | const |
| QDomNodeList & QDomNodeList::operator= | ( | const QDomNodeList & | other | ) |
| bool QDomNodeList::operator== | ( | const QDomNodeList & | other | ) | const |
|
inline |
|
friend |
|
friend |