Eneboo - Documentación para desarrolladores
Métodos públicos | Amigas
Referencia de la Clase QDomNodeList

The QDomNodeList class is a list of QDomNode objects.XMLLists 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. Más...

#include <qdom.h>

Lista de todos los miembros.

Métodos públicos

 QDomNodeList ()
 QDomNodeList (const QDomNodeList &)
QDomNodeListoperator= (const QDomNodeList &)
bool operator== (const QDomNodeList &) const
bool operator!= (const QDomNodeList &) const
virtual ~QDomNodeList ()
virtual QDomNode item (int index) const
virtual uint length () const
uint count () const
void * internalImpl () const
 QDomNodeList ()
 QDomNodeList (const QDomNodeList &)
QDomNodeListoperator= (const QDomNodeList &)
bool operator== (const QDomNodeList &) const
bool operator!= (const QDomNodeList &) const
virtual ~QDomNodeList ()
virtual QDomNode item (int index) const
virtual uint length () const
uint count () const
void * internalImpl () const

Amigas

class QDomNode
class QDomElement
class QDomDocument

Descripción detallada

The QDomNodeList class is a list of QDomNode objects.

XML

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 count() (and by length()).

For further information about the Document Object Model see http://www.w3.org/TR/REC-DOM-Level-1/ and http://www.w3.org/TR/DOM-Level-2-Core/. For a more general introduction of the DOM implementation see the QDomDocument documentation.

Ver también:
QDomNode::childNodes() QDomDocument::elementsByTagName()

Documentación del constructor y destructor

QDomNodeList::QDomNodeList ( )

Creates an empty node list.

QDomNodeList::QDomNodeList ( const QDomNodeList n)

Constructs a copy of n.

QDomNodeList::~QDomNodeList ( ) [virtual]

Destroys the object and frees its resources.

QDomNodeList::QDomNodeList ( )
QDomNodeList::QDomNodeList ( const QDomNodeList )
virtual QDomNodeList::~QDomNodeList ( ) [virtual]

Documentación de las funciones miembro

uint QDomNodeList::count ( ) const [inline]

Returns the number of nodes in the list.

This function is the same as length().

uint QDomNodeList::count ( ) const [inline]
void* QDomNodeList::internalImpl ( ) const [inline]
void* QDomNodeList::internalImpl ( ) const [inline]
virtual QDomNode QDomNodeList::item ( int  index) const [virtual]
QDomNode QDomNodeList::item ( int  index) const [virtual]

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).

Ver también:
count()
uint QDomNodeList::length ( void  ) const [virtual]

Returns the number of nodes in the list.

This function is the same as count().

virtual uint QDomNodeList::length ( ) const [virtual]
bool QDomNodeList::operator!= ( const QDomNodeList n) const

Returns TRUE the node list n and this node list are not equal; otherwise returns FALSE.

bool QDomNodeList::operator!= ( const QDomNodeList ) const
QDomNodeList& QDomNodeList::operator= ( const QDomNodeList )
QDomNodeList & QDomNodeList::operator= ( const QDomNodeList n)

Assigns n to this node list.

bool QDomNodeList::operator== ( const QDomNodeList n) const

Returns TRUE if the node list n and this node list are equal; otherwise returns FALSE.

bool QDomNodeList::operator== ( const QDomNodeList ) const

Documentación de las funciones relacionadas y clases amigas

QDomDocument [friend]
QDomElement [friend]
QDomNode [friend]

La documentación para esta clase fue generada a partir de los siguientes ficheros:
 Todo Clases Namespaces Archivos Funciones Variables 'typedefs' Enumeraciones Valores de enumeraciones Propiedades Amigas 'defines'