Qyoto  4.0.5
Qyoto is a C# language binding for Qt
 All Classes Namespaces Functions Variables Typedefs Enumerations Properties
QtXml.QXmlDTDHandler Class Referenceabstract

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

Inheritance diagram for QtXml.QXmlDTDHandler:
Collaboration diagram for QtXml.QXmlDTDHandler:

Public Member Functions

 QXmlDTDHandler ()
 
 QXmlDTDHandler (IQXmlDTDHandler copy)
 
virtual void CreateProxy ()
 
abstract string ErrorString ()
 
 
abstract bool NotationDecl (string name, string publicId, string systemId)
 
 
abstract bool UnparsedEntityDecl (string name, string publicId, string systemId, string notationName)
 
 
new void Dispose ()
 
- Public Member Functions inherited from QtXml.IQXmlDTDHandler
string ErrorString ()
 
bool NotationDecl (string name, string publicId, string systemId)
 
bool UnparsedEntityDecl (string name, string publicId, string systemId, string notationName)
 

Protected Member Functions

 QXmlDTDHandler (System.Type dummy)
 

Protected Attributes

SmokeInvocation interceptor
 

Properties

virtual System.IntPtr SmokeObject [get, set]
 

Detailed 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 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 QXmlDeclHandler, QXmlContentHandler, QXmlEntityResolver, QXmlErrorHandler, QXmlLexicalHandler, and Introduction to SAX2.

Constructor & Destructor Documentation

QtXml.QXmlDTDHandler.QXmlDTDHandler ( System.Type  dummy)
protected
QtXml.QXmlDTDHandler.QXmlDTDHandler ( )
QtXml.QXmlDTDHandler.QXmlDTDHandler ( IQXmlDTDHandler  copy)

Member Function Documentation

virtual void QtXml.QXmlDTDHandler.CreateProxy ( )
virtual
new void QtXml.QXmlDTDHandler.Dispose ( )
abstract string QtXml.QXmlDTDHandler.ErrorString ( )
pure virtual

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

abstract bool QtXml.QXmlDTDHandler.NotationDecl ( string  name,
string  publicId,
string  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.

abstract bool QtXml.QXmlDTDHandler.UnparsedEntityDecl ( string  name,
string  publicId,
string  systemId,
string  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.

Member Data Documentation

SmokeInvocation QtXml.QXmlDTDHandler.interceptor
protected

Property Documentation

virtual System.IntPtr QtXml.QXmlDTDHandler.SmokeObject
getset