1QDomCDATASection(3qt)                                    QDomCDATASection(3qt)
2
3
4

NAME

6       QDomCDATASection - Represents an XML CDATA section
7

SYNOPSIS

9       All the functions in this class are reentrant when Qt is built with
10       thread support.</p>
11
12       #include <qdom.h>
13
14       Inherits QDomText.
15
16   Public Members
17       QDomCDATASection ()
18       QDomCDATASection ( const QDomCDATASection & x )
19       QDomCDATASection & operator= ( const QDomCDATASection & x )
20       ~QDomCDATASection ()
21       virtual QDomNode::NodeType nodeType () const
22       virtual bool isCDATASection () const
23

DESCRIPTION

25       The QDomCDATASection class represents an XML CDATA section.
26
27       CDATA sections are used to escape blocks of text containing characters
28       that would otherwise be regarded as markup. The only delimiter that is
29       recognized in a CDATA section is the "]]>" string that terminates the
30       CDATA section. CDATA sections cannot be nested. Their primary purpose
31       is for including material such as XML fragments, without needing to
32       escape all the delimiters.
33
34       Adjacent QDomCDATASection nodes are not merged by the
35       QDomNode::normalize() function.
36
37       For further information about the Document Object Model see
38       http://www.w3.org/TR/REC-DOM-Level-1/ and http://www.w3.org/TR/DOM-
39       Level-2-Core/. For a more general introduction of the DOM
40       implementation see the QDomDocument documentation.
41
42       See also XML.
43

MEMBER FUNCTION DOCUMENTATION

QDomCDATASection::QDomCDATASection ()

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

QDomCDATASection::QDomCDATASection ( const QDomCDATASection & x )

50       Constructs a copy of x.
51
52       The data of the copy is shared (shallow copy): modifying one node will
53       also change the other. If you want to make a deep copy, use
54       cloneNode().
55

QDomCDATASection::~QDomCDATASection ()

57       Destroys the object and frees its resources.
58

bool QDomCDATASection::isCDATASection () const [virtual]

60       Returns TRUE.
61
62       Reimplemented from QDomNode.
63

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

65       Returns CDATASection.
66
67       Reimplemented from QDomText.
68

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

70       Assigns x to this CDATA section.
71
72       The data of the copy is shared (shallow copy): modifying one node will
73       also change the other. If you want to make a deep copy, use
74       cloneNode().
75
76

SEE ALSO

78       http://doc.trolltech.com/qdomcdatasection.html
79       http://www.trolltech.com/faq/tech.html
80
82       Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com.  See the
83       license file included in the distribution for a complete license
84       statement.
85

AUTHOR

87       Generated automatically from the source code.
88

BUGS

90       If you find a bug in Qt, please report it as described in
91       http://doc.trolltech.com/bughowto.html.  Good bug reports help us to
92       help you. Thank you.
93
94       The definitive Qt documentation is provided in HTML format; it is
95       located at $QTDIR/doc/html and can be read using Qt Assistant or with a
96       web browser. This man page is provided as a convenience for those users
97       who prefer man pages, although this format is not officially supported
98       by Trolltech.
99
100       If you find errors in this manual page, please report them to qt-
101       bugs@trolltech.com.  Please include the name of the manual page
102       (qdomcdatasection.3qt) and the Qt version (3.3.8).
103
104
105
106Trolltech AS                    2 February 2007          QDomCDATASection(3qt)
Impressum