QXmlDefaultHandler man page on IRIX

Man page or keyword search:  
man Server   31559 pages
apropos Keyword Search (all sections)
Output format
IRIX logo
[printable version]



QXmlDefaultHandler(3qt)			  QXmlDefaultHandler(3qt)

NAME
       QXmlDefaultHandler - Default implementation of all XML
       handler classes

       #include <qxml.h>

       Inherits QXmlContentHandler, QXmlDTDHandler,
       QXmlDeclHandler, QXmlEntityResolver, QXmlErrorHandler and
       QXmlLexicalHandler.

   Public Members
       QXmlDefaultHandler ()
       virtual ~QXmlDefaultHandler ()
       virtual void setDocumentLocator ( QXmlLocator * locator )
       virtual bool startDocument ()
       virtual bool endDocument ()
       virtual bool startPrefixMapping ( const QString & prefix,
	   const QString & uri )
       virtual bool endPrefixMapping ( const QString & prefix )
       virtual bool startElement ( const QString & namespaceURI,
	   const QString & localName, const QString & qName,
	   const QXmlAttributes & atts )
       virtual bool endElement ( const QString & namespaceURI,
	   const QString & localName, const QString & qName )
       virtual bool characters ( const QString & ch )
       virtual bool ignorableWhitespace ( const QString & ch )
       virtual bool processingInstruction ( const QString &
	   target, const QString & data )
       virtual bool skippedEntity ( const QString & name )
       virtual bool warning ( const QXmlParseException &
	   exception )
       virtual bool error ( const QXmlParseException & exception
	   )
       virtual bool fatalError ( const QXmlParseException &
	   exception )
       virtual bool notationDecl ( const QString & name, const
	   QString & publicId, const QString & systemId )
       virtual bool unparsedEntityDecl ( const QString & name,
	   const QString & publicId, const QString & systemId,
	   const QString & notationName )
       virtual bool resolveEntity ( const QString & publicId,
	   const QString & systemId, QXmlInputSource * ret )
       virtual bool startDTD ( const QString & name, const
	   QString & publicId, const QString & systemId )
       virtual bool endDTD ()
       virtual bool startCDATA ()
       virtual bool endCDATA ()
       virtual bool comment ( const QString & ch )
       virtual bool attributeDecl ( const QString & eName, const
	   QString & aName, const QString & type, const QString &
	   valueDefault, const QString & value )
       virtual bool internalEntityDecl ( const QString & name,
	   const QString & value )

Trolltech AS		   13 June 2001				1

QXmlDefaultHandler(3qt)			  QXmlDefaultHandler(3qt)

       virtual bool externalEntityDecl ( const QString & name,
	   const QString & publicId, const QString & systemId )
       virtual QString errorString ()

DESCRIPTION
       The QXmlDefaultHandler class provides a default
       implementation of all XML handler classes.

       Very often you are only interested in parts of the things
       that that the reader reports to you. This class simply
       implements a default behaviour of the handler classes
       (most of the time: do nothing). Normally this is the class
       you subclass for implementing your customized handler.

       See also the Introduction to SAX2.

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

MEMBER FUNCTION DOCUMENTATION
QXmlDefaultHandler::QXmlDefaultHandler ()
       Constructor.

QXmlDefaultHandler::~QXmlDefaultHandler () [virtual]
       Destructor.

bool QXmlDefaultHandler::attributeDecl ( const QString &, const
       QString &, const QString &, const QString &, const QString
       & ) [virtual]
       Does nothing.

       Reimplemented from QXmlDeclHandler.

bool QXmlDefaultHandler::characters ( const QString & ) [virtual]
       Does nothing.

       Reimplemented from QXmlContentHandler.

bool QXmlDefaultHandler::comment ( const QString & ) [virtual]
       Does nothing.

       Reimplemented from QXmlLexicalHandler.

bool QXmlDefaultHandler::endCDATA () [virtual]
       Does nothing.

       Reimplemented from QXmlLexicalHandler.

bool QXmlDefaultHandler::endDTD () [virtual]
       Does nothing.

       Reimplemented from QXmlLexicalHandler.

Trolltech AS		   13 June 2001				2

QXmlDefaultHandler(3qt)			  QXmlDefaultHandler(3qt)

bool QXmlDefaultHandler::endDocument () [virtual]
       Does nothing.

       Reimplemented from QXmlContentHandler.

bool QXmlDefaultHandler::endElement ( const QString &, const
       QString &, const QString & ) [virtual]
       Does nothing.

       Reimplemented from QXmlContentHandler.

bool QXmlDefaultHandler::endPrefixMapping ( const QString & )
       [virtual]
       Does nothing.

       Reimplemented from QXmlContentHandler.

bool QXmlDefaultHandler::error ( const QXmlParseException & )
       [virtual]
       Does nothing.

       Reimplemented from QXmlErrorHandler.

QString QXmlDefaultHandler::errorString () [virtual]
       Returns the default error string.

       Reimplemented from QXmlDTDHandler.

bool QXmlDefaultHandler::externalEntityDecl ( const QString &,
       const QString &, const QString & ) [virtual]
       Does nothing.

       Reimplemented from QXmlDeclHandler.

bool QXmlDefaultHandler::fatalError ( const QXmlParseException &
       ) [virtual]
       Does nothing.

       Reimplemented from QXmlErrorHandler.

bool QXmlDefaultHandler::ignorableWhitespace ( const QString & )
       [virtual]
       Does nothing.

       Reimplemented from QXmlContentHandler.

bool QXmlDefaultHandler::internalEntityDecl ( const QString &,
       const QString & ) [virtual]
       Does nothing.

       Reimplemented from QXmlDeclHandler.

bool QXmlDefaultHandler::notationDecl ( const QString &, const
       QString &, const QString & ) [virtual]

Trolltech AS		   13 June 2001				3

QXmlDefaultHandler(3qt)			  QXmlDefaultHandler(3qt)

       Does nothing.

       Reimplemented from QXmlDTDHandler.

bool QXmlDefaultHandler::processingInstruction ( const QString &,
       const QString & ) [virtual]
       Does nothing.

       Reimplemented from QXmlContentHandler.

bool QXmlDefaultHandler::resolveEntity ( const QString &, const
       QString &, QXmlInputSource * ret ) [virtual]
       Always sets ret to 0, so that the reader will use the
       system identifier provided in the XML document.

       Reimplemented from QXmlEntityResolver.

void QXmlDefaultHandler::setDocumentLocator ( QXmlLocator * )
       [virtual]
       Does nothing.

       Reimplemented from QXmlContentHandler.

bool QXmlDefaultHandler::skippedEntity ( const QString & )
       [virtual]
       Does nothing.

       Reimplemented from QXmlContentHandler.

bool QXmlDefaultHandler::startCDATA () [virtual]
       Does nothing.

       Reimplemented from QXmlLexicalHandler.

bool QXmlDefaultHandler::startDTD ( const QString &, const
       QString &, const QString & ) [virtual]
       Does nothing.

       Reimplemented from QXmlLexicalHandler.

bool QXmlDefaultHandler::startDocument () [virtual]
       Does nothing.

       Reimplemented from QXmlContentHandler.

bool QXmlDefaultHandler::startElement ( const QString &, const
       QString &, const QString &, const QXmlAttributes & )
       [virtual]
       Does nothing.

       Reimplemented from QXmlContentHandler.

bool QXmlDefaultHandler::startPrefixMapping ( const QString &,
       const QString & ) [virtual]

Trolltech AS		   13 June 2001				4

QXmlDefaultHandler(3qt)			  QXmlDefaultHandler(3qt)

       Does nothing.

       Reimplemented from QXmlContentHandler.

bool QXmlDefaultHandler::unparsedEntityDecl ( const QString &,
       const QString &, const QString &, const QString & )
       [virtual]
       Does nothing.

       Reimplemented from QXmlDTDHandler.

bool QXmlDefaultHandler::warning ( const QXmlParseException & )
       [virtual]
       Does nothing.

       Reimplemented from QXmlErrorHandler.

SEE ALSO
       http://doc.trolltech.com/qxmldefaulthandler.html
       http://www.trolltech.com/faq/tech.html

COPYRIGHT
       Copyright 1992-2001 Trolltech AS,
       http://www.trolltech.com.  See the license file included
       in the distribution for a complete license statement.

AUTHOR
       Generated automatically from the source code.

BUGS
       If you find a bug in Qt, please report it as described in
       http://doc.trolltech.com/bughowto.html.	Good bug reports
       make our job much simpler. Thank you.

       In case of content or formattting problems with this
       manual page, please report them to qt-bugs@trolltech.com.
       Please include the name of the manual page
       (qxmldefaulthandler.3qt) and the Qt version (2.3.1).

Trolltech AS		   13 June 2001				5

[top]

List of man pages available for IRIX

Copyright (c) for man pages and the logo by the respective OS vendor.

For those who want to learn more, the polarhome community provides shell access and support.

[legal] [privacy] [GNU] [policy] [cookies] [netiquette] [sponsors] [FAQ]
Tweet
Polarhome, production since 1999.
Member of Polarhome portal.
Based on Fawad Halim's script.
....................................................................
Vote for polarhome
Free Shell Accounts :: the biggest list on the net