1QDomNotation(3qt) QDomNotation(3qt)
2
3
4
6 QDomNotation - Represents an XML notation
7
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 QDomNode.
15
16 Public Members
17 QDomNotation ()
18 QDomNotation ( const QDomNotation & x )
19 QDomNotation & operator= ( const QDomNotation & x )
20 ~QDomNotation ()
21 QString publicId () const
22 QString systemId () const
23 virtual QDomNode::NodeType nodeType () const
24 virtual bool isNotation () const
25
27 The QDomNotation class represents an XML notation.
28
29 A notation either declares, by name, the format of an unparsed entity
30 (see section 4.7 of the XML 1.0 specification), or is used for formal
31 declaration of processing instruction targets (see section 2.6 of the
32 XML 1.0 specification).
33
34 DOM does not support editing notation nodes; they are therefore read-
35 only.
36
37 A notation node does not have any parent.
38
39 You can retrieve the publicId() and systemId() from a notation node.
40
41 For further information about the Document Object Model see
42 http://www.w3.org/TR/REC-DOM-Level-1/ and http://www.w3.org/TR/DOM-
43 Level-2-Core/. For a more general introduction of the DOM
44 implementation see the QDomDocument documentation.
45
46 See also XML.
47
50 Constructor.
51
53 Constructs a copy of x.
54
55 The data of the copy is shared (shallow copy): modifying one node will
56 also change the other. If you want to make a deep copy, use
57 cloneNode().
58
60 Destroys the object and frees its resources.
61
63 Returns TRUE.
64
65 Reimplemented from QDomNode.
66
68 Returns NotationNode.
69
70 Reimplemented from QDomNode.
71
73 Assigns x to this DOM notation.
74
75 The data of the copy is shared (shallow copy): modifying one node will
76 also change the other. If you want to make a deep copy, use
77 cloneNode().
78
80 Returns the public identifier of this notation.
81
83 Returns the system identifier of this notation.
84
85
87 http://doc.trolltech.com/qdomnotation.html
88 http://www.trolltech.com/faq/tech.html
89
91 Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the
92 license file included in the distribution for a complete license
93 statement.
94
96 Generated automatically from the source code.
97
99 If you find a bug in Qt, please report it as described in
100 http://doc.trolltech.com/bughowto.html. Good bug reports help us to
101 help you. Thank you.
102
103 The definitive Qt documentation is provided in HTML format; it is
104 located at $QTDIR/doc/html and can be read using Qt Assistant or with a
105 web browser. This man page is provided as a convenience for those users
106 who prefer man pages, although this format is not officially supported
107 by Trolltech.
108
109 If you find errors in this manual page, please report them to qt-
110 bugs@trolltech.com. Please include the name of the manual page
111 (qdomnotation.3qt) and the Qt version (3.3.8).
112
113
114
115Trolltech AS 2 February 2007 QDomNotation(3qt)