Eneboo - Documentación para desarrolladores
Métodos públicos
Referencia de la Clase QXmlDTDHandler

The QXmlDTDHandler class provides an interface to report DTD content of XML data.XMLIf an application needs information about notations and unparsed entities, it can implement this interface and register an instance with QXmlReader::setDTDHandler(). Más...

#include <qxml.h>

Diagrama de herencias de QXmlDTDHandler
QXmlDefaultHandler QXmlDefaultHandler QDomHandler QphHandler TsHandler TsHandler UiHandler QDomHandler QphHandler TsHandler TsHandler UiHandler

Lista de todos los miembros.

Métodos públicos

virtual bool notationDecl (const QString &name, const QString &publicId, const QString &systemId)=0
virtual bool unparsedEntityDecl (const QString &name, const QString &publicId, const QString &systemId, const QString &notationName)=0
virtual QString errorString ()=0
virtual bool notationDecl (const QString &name, const QString &publicId, const QString &systemId)=0
virtual bool unparsedEntityDecl (const QString &name, const QString &publicId, const QString &systemId, const QString &notationName)=0
virtual QString errorString ()=0

Descripción detallada

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

XML

If an application needs information about notations and unparsed entities, it can implement this interface and register an instance with QXmlReader::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.

See also the Introduction to SAX2.

Ver también:
QXmlDeclHandler QXmlContentHandler QXmlEntityResolver QXmlErrorHandler QXmlLexicalHandler

Documentación de las funciones miembro

QString QXmlDTDHandler::errorString ( ) [pure virtual]

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

Implementado en QXmlDefaultHandler y QXmlDefaultHandler.

virtual QString QXmlDTDHandler::errorString ( ) [pure virtual]
virtual bool QXmlDTDHandler::notationDecl ( const QString name,
const QString publicId,
const QString systemId 
) [pure virtual]
bool QXmlDTDHandler::notationDecl ( const QString name,
const QString publicId,
const QString systemId 
) [pure virtual]

The reader calls this function when it has parsed a notation declaration.

The argument name is the notation name, publicId is the notation's public identifier and systemId is the notation's system identifier.

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

Implementado en QXmlDefaultHandler, QDomHandler y QXmlDefaultHandler.

bool QXmlDTDHandler::unparsedEntityDecl ( const QString name,
const QString publicId,
const QString systemId,
const QString notationName 
) [pure virtual]

The reader calls this function when it finds an unparsed entity declaration.

The argument name is the unparsed entity's name, publicId is the entity's public identifier, systemId is the entity's system identifier and notationName is the name of the associated notation.

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

Implementado en QXmlDefaultHandler, QDomHandler y QXmlDefaultHandler.

virtual bool QXmlDTDHandler::unparsedEntityDecl ( const QString name,
const QString publicId,
const QString systemId,
const QString notationName 
) [pure virtual]

La documentación para esta clase fue generada a partir de los siguientes ficheros:
 Todo Clases Namespaces Archivos Funciones Variables 'typedefs' Enumeraciones Valores de enumeraciones Propiedades Amigas 'defines'