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

The QDomCDATASection class represents an XML CDATA section.XMLCDATA sections are used to escape blocks of text containing characters that would otherwise be regarded as markup. The only delimiter that is recognized in a CDATA section is the "]]>" string that terminates the CDATA section. CDATA sections cannot be nested. Their primary purpose is for including material such as XML fragments, without needing to escape all the delimiters. Más...

#include <qdom.h>

Diagrama de herencias de QDomCDATASection
QDomText QDomText QDomCharacterData QDomCharacterData QDomCharacterData QDomCharacterData QDomNode QDomNode QDomNode QDomNode QDomNode QDomNode QDomNode QDomNode

Lista de todos los miembros.

Métodos públicos

 QDomCDATASection ()
 QDomCDATASection (const QDomCDATASection &x)
QDomCDATASectionoperator= (const QDomCDATASection &)
 ~QDomCDATASection ()
QDomNode::NodeType nodeType () const
bool isCDATASection () const
 QDomCDATASection ()
 QDomCDATASection (const QDomCDATASection &x)
QDomCDATASectionoperator= (const QDomCDATASection &)
 ~QDomCDATASection ()
QDomNode::NodeType nodeType () const
bool isCDATASection () const

Amigas

class QDomDocument
class QDomNode

Descripción detallada

The QDomCDATASection class represents an XML CDATA section.

XML

CDATA sections are used to escape blocks of text containing characters that would otherwise be regarded as markup. The only delimiter that is recognized in a CDATA section is the "]]&gt;" string that terminates the CDATA section. CDATA sections cannot be nested. Their primary purpose is for including material such as XML fragments, without needing to escape all the delimiters.

Adjacent QDomCDATASection nodes are not merged by the QDomNode::normalize() function.

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.


Documentación del constructor y destructor

QDomCDATASection::QDomCDATASection ( )

Constructs an empty CDATA section. To create a CDATA section with content, use the QDomDocument::createCDATASection() function.

QDomCDATASection::QDomCDATASection ( const QDomCDATASection x)

Constructs a copy of x.

The data of the copy is shared (shallow copy): modifying one node will also change the other. If you want to make a deep copy, use cloneNode().

QDomCDATASection::~QDomCDATASection ( )

Destroys the object and frees its resources.

QDomCDATASection::QDomCDATASection ( )
QDomCDATASection::QDomCDATASection ( const QDomCDATASection x)
QDomCDATASection::~QDomCDATASection ( )

Documentación de las funciones miembro

bool QDomCDATASection::isCDATASection ( ) const [virtual]

Returns TRUE.

Reimplementado de QDomNode.

bool QDomCDATASection::isCDATASection ( ) const [virtual]

Returns TRUE if the node is a CDATA section; otherwise returns FALSE.

If this function returns TRUE, it does not imply that this object is a QDomCDATASection; you can get the QDomCDATASection with toCDATASection().

Ver también:
toCDATASection()

Reimplementado de QDomNode.

QDomNode::NodeType QDomCDATASection::nodeType ( ) const [virtual]

Returns TextNode.

Reimplementado de QDomText.

QDomNode::NodeType QDomCDATASection::nodeType ( ) const [virtual]

Returns CDATASection.

Reimplementado de QDomText.

QDomCDATASection& QDomCDATASection::operator= ( const QDomCDATASection )
QDomCDATASection & QDomCDATASection::operator= ( const QDomCDATASection x)

Assigns x to this CDATA section.

The data of the copy is shared (shallow copy): modifying one node will also change the other. If you want to make a deep copy, use cloneNode().


Documentación de las funciones relacionadas y clases amigas

QDomDocument [friend]

Reimplementado de QDomText.

QDomNode [friend]

Reimplementado de QDomText.


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'