Eneboo - Documentación para desarrolladores
|
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>
Métodos públicos | |
QDomCDATASection () | |
QDomCDATASection (const QDomCDATASection &x) | |
QDomCDATASection & | operator= (const QDomCDATASection &) |
~QDomCDATASection () | |
QDomNode::NodeType | nodeType () const |
bool | isCDATASection () const |
QDomCDATASection () | |
QDomCDATASection (const QDomCDATASection &x) | |
QDomCDATASection & | operator= (const QDomCDATASection &) |
~QDomCDATASection () | |
QDomNode::NodeType | nodeType () const |
bool | isCDATASection () const |
Amigas | |
class | QDomDocument |
class | QDomNode |
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 "]]>" 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.
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 | ( | ) |
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().
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().
QDomDocument [friend] |
Reimplementado de QDomText.