QDomDocumentType¶
The
QDomDocumentType
class is the representation of the DTD in the document tree. More…

Synopsis¶
Detailed Description¶
The
QDomDocumentType
class allows read-only access to some of the data structures in the DTD: it can return a map of allentities()
andnotations()
. In addition the functionname()
returns the name of the document type as specified in the <!DOCTYPE name> tag. This class also provides thepublicId()
,systemId()
andinternalSubset()
functions.See also
-
class
QDomDocumentType
¶ QDomDocumentType(x)
- param x
Creates an empty
QDomDocumentType
object.Constructs a copy of
n
.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()
.
-
PySide2.QtXml.QDomDocumentType.
entities
()¶ - Return type
Returns a map of all entities described in the DTD.
-
PySide2.QtXml.QDomDocumentType.
internalSubset
()¶ - Return type
unicode
Returns the internal subset of the document type or an empty string if there is no internal subset.
See also
-
PySide2.QtXml.QDomDocumentType.
name
()¶ - Return type
unicode
Returns the name of the document type as specified in the <!DOCTYPE name> tag.
See also
-
PySide2.QtXml.QDomDocumentType.
notations
()¶ - Return type
Returns a map of all notations described in the DTD.
-
PySide2.QtXml.QDomDocumentType.
publicId
()¶ - Return type
unicode
Returns the public identifier of the external DTD subset or an empty string if there is no public identifier.
-
PySide2.QtXml.QDomDocumentType.
systemId
()¶ - Return type
unicode
Returns the system identifier of the external DTD subset or an empty string if there is no system identifier.