
We bake cookies in your browser for a better experience. Using this site means that you consent.Read More
TheQDomDocumentType class is the representation of the DTD in the document tree.More...
| Header: | #include <QDomDocumentType> |
| Inherits: | QDomNode |
Note: All functions in this class arereentrant.
| QDomDocumentType() | |
| QDomDocumentType(const QDomDocumentType & n) | |
| QDomNamedNodeMap | entities() const |
| QString | internalSubset() const |
| QString | name() const |
| QDomNode::NodeType | nodeType() const |
| QDomNamedNodeMap | notations() const |
| QString | publicId() const |
| QString | systemId() const |
| QDomDocumentType & | operator=(const QDomDocumentType & n) |
TheQDomDocumentType class is the representation of the DTD in the document tree.
TheQDomDocumentType 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 alsoQDomDocument.
Creates an emptyQDomDocumentType object.
Constructs a copy ofn.
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, usecloneNode().
Returns a map of all entities described in the DTD.
Returns the internal subset of the document type or an empty string if there is no internal subset.
See alsopublicId() andsystemId().
Returns the name of the document type as specified in the <!DOCTYPE name> tag.
See alsonodeName().
ReturnsDocumentTypeNode.
See alsoisDocumentType() andQDomNode::toDocumentType().
Returns a map of all notations described in the DTD.
Returns the public identifier of the external DTD subset or an empty string if there is no public identifier.
See alsosystemId(),internalSubset(), andQDomImplementation::createDocumentType().
Returns the system identifier of the external DTD subset or an empty string if there is no system identifier.
See alsopublicId(),internalSubset(), andQDomImplementation::createDocumentType().
Assignsn to this document type.
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, usecloneNode().
© 2016 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of theGNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.