返回介绍

QXmlDeclHandler Class

发布于 2019-10-04 15:04:15 字数 3737 浏览 979 评论 0 收藏 0

The QXmlDeclHandler class provides an interface to report declaration content of XML data. More...

#include <qxml.h>

Inherited by QXmlDefaultHandler.

List of all member functions.

Public Members

  • virtual bool attributeDecl ( constQString&eName, constQString&aName, constQString&type, constQString&valueDefault, constQString&value ) = 0
  • virtual bool internalEntityDecl ( constQString&name, constQString&value ) = 0
  • virtual bool externalEntityDecl ( constQString&name, constQString&publicId, constQString&systemId ) = 0
  • virtual QString errorString () = 0

Detailed Description

The QXmlDeclHandler class provides an interface to report declaration content of XML data.

You can set the declaration handler with QXmlReader::setDeclHandler().

This interface based upon the SAX2 extension DeclHandler.

The interface provides attributeDecl(), internalEntityDecl() and externalEntityDecl() functions.

See also the Introduction to SAX2.

See also QXmlDTDHandler, QXmlContentHandler, QXmlEntityResolver, QXmlErrorHandler, QXmlLexicalHandler and XML.


Member Function Documentation

bool QXmlDeclHandler::attributeDecl ( constQString&eName, constQString&aName, constQString&type, constQString&valueDefault, constQString&value ) [pure virtual]

The reader calls this function to report an attribute type declaration. Only the effective (first) declaration for an attribute is reported.

The reader passes the name of the associated element in eName and the name of the attribute in aName. It passes a string that represents the attribute type in type and a string that represents the attribute default in valueDefault. This string is one of "#IMPLIED", "#REQUIRED", "#FIXED" or null (if none of the others applies). The reader passes the attribute's default value in value. If no default value is specified in the XML file, value is QString::null.

If this function returns FALSE the reader stops parsing and reports an error. The reader uses the function errorString() to get the error message.

QString QXmlDeclHandler::errorString () [pure virtual]

The reader calls this function to get an error string if any of the handler functions returns FALSE.

bool QXmlDeclHandler::externalEntityDecl ( constQString&name, constQString&publicId, constQString&systemId ) [pure virtual]

The reader calls this function to report a parsed external entity declaration. Only the effective (first) declaration for each entity is reported.

The reader passes the name of the entity in name, the public identifier in publicId and the system identifier in systemId. If there is no public identifier specified, it passes QString::null in publicId.

If this function returns FALSE the reader stops parsing and reports an error. The reader uses the function errorString() to get the error message.

bool QXmlDeclHandler::internalEntityDecl ( constQString&name, constQString&value ) [pure virtual]

The reader calls this function to report an internal entity declaration. Only the effective (first) declaration is reported.

The reader passes the name of the entity in name and the value of the entity in value.

If this function returns FALSE the reader stops parsing and reports an error. The reader uses the function errorString() to get the error message.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文