QXmlDTDHandler

PyQt5.QtXml.QXmlDTDHandler

Inherited by QXmlDefaultHandler.

Description

The QXmlDTDHandler class provides an interface to report DTD content of XML data.

If an application needs information about notations and unparsed entities, it can implement this interface and register an instance with setDTDHandler().

Note that this interface includes only those DTD events that the XML recommendation requires processors to report, i.e. notation and unparsed entity declarations using notationDecl() and unparsedEntityDecl() respectively.

Methods

__init__()

TODO


__init__(QXmlDTDHandler)

TODO


errorString() → str

TODO


notationDecl(str, str, str) → bool

TODO


unparsedEntityDecl(str, str, str, str) → bool

TODO