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

The QXmlSimpleReader class provides an implementation of a simple XML reader (parser).XML. Más...

#include <qxml.h>

Diagrama de herencias de QXmlSimpleReader
QXmlReader QXmlReader

Lista de todos los miembros.

Métodos públicos

 QXmlSimpleReader ()
virtual ~QXmlSimpleReader ()
bool feature (const QString &name, bool *ok=0) const
void setFeature (const QString &name, bool value)
bool hasFeature (const QString &name) const
void * property (const QString &name, bool *ok=0) const
void setProperty (const QString &name, void *value)
bool hasProperty (const QString &name) const
void setEntityResolver (QXmlEntityResolver *handler)
QXmlEntityResolverentityResolver () const
void setDTDHandler (QXmlDTDHandler *handler)
QXmlDTDHandlerDTDHandler () const
void setContentHandler (QXmlContentHandler *handler)
QXmlContentHandlercontentHandler () const
void setErrorHandler (QXmlErrorHandler *handler)
QXmlErrorHandlererrorHandler () const
void setLexicalHandler (QXmlLexicalHandler *handler)
QXmlLexicalHandlerlexicalHandler () const
void setDeclHandler (QXmlDeclHandler *handler)
QXmlDeclHandlerdeclHandler () const
bool parse (const QXmlInputSource &input)
bool parse (const QXmlInputSource *input)
virtual bool parse (const QXmlInputSource *input, bool incremental)
virtual bool parseContinue ()
 QXmlSimpleReader ()
virtual ~QXmlSimpleReader ()
bool feature (const QString &name, bool *ok=0) const
void setFeature (const QString &name, bool value)
bool hasFeature (const QString &name) const
void * property (const QString &name, bool *ok=0) const
void setProperty (const QString &name, void *value)
bool hasProperty (const QString &name) const
void setEntityResolver (QXmlEntityResolver *handler)
QXmlEntityResolverentityResolver () const
void setDTDHandler (QXmlDTDHandler *handler)
QXmlDTDHandlerDTDHandler () const
void setContentHandler (QXmlContentHandler *handler)
QXmlContentHandlercontentHandler () const
void setErrorHandler (QXmlErrorHandler *handler)
QXmlErrorHandlererrorHandler () const
void setLexicalHandler (QXmlLexicalHandler *handler)
QXmlLexicalHandlerlexicalHandler () const
void setDeclHandler (QXmlDeclHandler *handler)
QXmlDeclHandlerdeclHandler () const
bool parse (const QXmlInputSource &input)
bool parse (const QXmlInputSource *input)
virtual bool parse (const QXmlInputSource *input, bool incremental)
virtual bool parseContinue ()

Amigas

class QXmlSimpleReaderPrivate
class QXmlSimpleReaderLocator
class QDomDocumentPrivate

Descripción detallada

The QXmlSimpleReader class provides an implementation of a simple XML reader (parser).

XML

.

This XML reader is sufficient for simple parsing tasks. The reader: provides a well-formed parser; does not parse any external entities; can do namespace processing.

Documents are parsed with a call to parse().


Documentación del constructor y destructor

QXmlSimpleReader::QXmlSimpleReader ( )

Constructs a simple XML reader with the following feature settings: Feature Setting http://xml.org/sax/features/namespaces TRUE http://xml.org/sax/features/namespace-prefixes FALSE http://trolltech.com/xml/features/report-whitespace-only-CharData TRUE http://trolltech.com/xml/features/report-start-end-entity FALSE

More information about features can be found in the Qt SAX2 overview.

Ver también:
setFeature()
QXmlSimpleReader::~QXmlSimpleReader ( ) [virtual]

Destroys the simple XML reader.

QXmlSimpleReader::QXmlSimpleReader ( )
virtual QXmlSimpleReader::~QXmlSimpleReader ( ) [virtual]

Documentación de las funciones miembro

QXmlContentHandler * QXmlSimpleReader::contentHandler ( ) const [virtual]

Implementa QXmlReader.

QXmlContentHandler* QXmlSimpleReader::contentHandler ( ) const [virtual]

Returns the content handler or 0 if none was set.

Ver también:
setContentHandler()

Implementa QXmlReader.

QXmlDeclHandler * QXmlSimpleReader::declHandler ( ) const [virtual]

Implementa QXmlReader.

QXmlDeclHandler* QXmlSimpleReader::declHandler ( ) const [virtual]

Returns the declaration handler or 0 if none was set.

Ver también:
setDeclHandler()

Implementa QXmlReader.

QXmlDTDHandler* QXmlSimpleReader::DTDHandler ( ) const [virtual]

Returns the DTD handler or 0 if none was set.

Ver también:
setDTDHandler()

Implementa QXmlReader.

QXmlDTDHandler * QXmlSimpleReader::DTDHandler ( ) const [virtual]

Implementa QXmlReader.

QXmlEntityResolver * QXmlSimpleReader::entityResolver ( ) const [virtual]

Implementa QXmlReader.

QXmlEntityResolver* QXmlSimpleReader::entityResolver ( ) const [virtual]

Returns the entity resolver or 0 if none was set.

Ver también:
setEntityResolver()

Implementa QXmlReader.

QXmlErrorHandler* QXmlSimpleReader::errorHandler ( ) const [virtual]

Returns the error handler or 0 if none is set.

Ver también:
setErrorHandler()

Implementa QXmlReader.

QXmlErrorHandler * QXmlSimpleReader::errorHandler ( ) const [virtual]

Implementa QXmlReader.

bool QXmlSimpleReader::feature ( const QString name,
bool ok = 0 
) const [virtual]

Implementa QXmlReader.

bool QXmlSimpleReader::feature ( const QString name,
bool ok = 0 
) const [virtual]

If the reader has the feature called name, the feature's value is returned. If no such feature exists the return value is undefined.

If ok is not 0: *ok is set to TRUE if the reader has the feature called name; otherwise *ok is set to FALSE.

Ver también:
setFeature() hasFeature()

Implementa QXmlReader.

bool QXmlSimpleReader::hasFeature ( const QString name) const [virtual]

Implementa QXmlReader.

bool QXmlSimpleReader::hasFeature ( const QString name) const [virtual]

Returns TRUE if the reader has the feature called name; otherwise returns FALSE.

Ver también:
feature() setFeature()

Implementa QXmlReader.

bool QXmlSimpleReader::hasProperty ( const QString name) const [virtual]

Implementa QXmlReader.

bool QXmlSimpleReader::hasProperty ( const QString name) const [virtual]

Returns TRUE if the reader has the property name; otherwise returns FALSE.

Ver también:
property() setProperty()

Implementa QXmlReader.

QXmlLexicalHandler * QXmlSimpleReader::lexicalHandler ( ) const [virtual]

Implementa QXmlReader.

QXmlLexicalHandler* QXmlSimpleReader::lexicalHandler ( ) const [virtual]

Returns the lexical handler or 0 if none was set.

Ver también:
setLexicalHandler()

Implementa QXmlReader.

bool QXmlSimpleReader::parse ( const QXmlInputSource input) [virtual]

Reads an XML document from input and parses it. Returns TRUE if the parsing was successful; otherwise returns FALSE.

Implementa QXmlReader.

bool QXmlSimpleReader::parse ( const QXmlInputSource input) [virtual]

Implementa QXmlReader.

bool QXmlSimpleReader::parse ( const QXmlInputSource input) [virtual]

Implementa QXmlReader.

virtual bool QXmlSimpleReader::parse ( const QXmlInputSource input,
bool  incremental 
) [virtual]
bool QXmlSimpleReader::parse ( const QXmlInputSource input) [virtual]

Implementa QXmlReader.

bool QXmlSimpleReader::parse ( const QXmlInputSource input,
bool  incremental 
) [virtual]

Reads an XML document from input and parses it. Returns FALSE if the parsing detects an error; otherwise returns TRUE.

If incremental is TRUE, the parser does not return FALSE when it reaches the end of the input without reaching the end of the XML file. Instead it stores the state of the parser so that parsing can be continued at a later stage when more data is available. You can use the function parseContinue() to continue with parsing. This class stores a pointer to the input source input and the parseContinue() function tries to read from that input souce. This means that you should not delete the input source input until you've finished your calls to parseContinue(). If you call this function with incremental TRUE whilst an incremental parse is in progress a new parsing session will be started and the previous session lost.

If incremental is FALSE, this function behaves like the normal parse function, i.e. it returns FALSE when the end of input is reached without reaching the end of the XML file and the parsing cannot be continued.

Ver también:
parseContinue() QSocket
bool QXmlSimpleReader::parseContinue ( ) [virtual]

Continues incremental parsing; this function reads the input from the QXmlInputSource that was specified with the last parse() command. To use this function, you must have called parse() with the incremental argument set to TRUE.

Returns FALSE if a parsing error occurs; otherwise returns TRUE.

If the input source returns an empty string for the function QXmlInputSource::data(), then this means that the end of the XML file has been reached; this is quite important, especially if you want to use the reader to parse more than one XML file.

The case of the end of the XML file being reached without having finished parsing is not considered to be an error: you can continue parsing at a later stage by calling this function again when there is more data available to parse.

This function assumes that the end of the XML document is reached if the QXmlInputSource::next() function returns QXmlInputSource::EndOfDocument. If the parser has not finished parsing when it encounters this symbol, it is an error and FALSE is returned.

Ver también:
parse() QXmlInputSource::next()
virtual bool QXmlSimpleReader::parseContinue ( ) [virtual]
void * QXmlSimpleReader::property ( const QString name,
bool ok = 0 
) const [virtual]

Implementa QXmlReader.

void* QXmlSimpleReader::property ( const QString name,
bool ok = 0 
) const [virtual]

If the reader has the property name, this function returns the value of the property; otherwise the return value is undefined.

If ok is not 0: if the reader has the name property *ok is set to TRUE; otherwise *ok is set to FALSE.

Ver también:
setProperty() hasProperty()

Implementa QXmlReader.

void QXmlSimpleReader::setContentHandler ( QXmlContentHandler handler) [virtual]

Implementa QXmlReader.

void QXmlSimpleReader::setContentHandler ( QXmlContentHandler handler) [virtual]

Sets the content handler to handler.

Ver también:
contentHandler()

Implementa QXmlReader.

void QXmlSimpleReader::setDeclHandler ( QXmlDeclHandler handler) [virtual]

Implementa QXmlReader.

void QXmlSimpleReader::setDeclHandler ( QXmlDeclHandler handler) [virtual]

Sets the declaration handler to handler.

Ver también:
declHandler()

Implementa QXmlReader.

void QXmlSimpleReader::setDTDHandler ( QXmlDTDHandler handler) [virtual]

Implementa QXmlReader.

void QXmlSimpleReader::setDTDHandler ( QXmlDTDHandler handler) [virtual]

Sets the DTD handler to handler.

Ver también:
DTDHandler()

Implementa QXmlReader.

void QXmlSimpleReader::setEntityResolver ( QXmlEntityResolver handler) [virtual]

Sets the entity resolver to handler.

Ver también:
entityResolver()

Implementa QXmlReader.

void QXmlSimpleReader::setEntityResolver ( QXmlEntityResolver handler) [virtual]

Implementa QXmlReader.

void QXmlSimpleReader::setErrorHandler ( QXmlErrorHandler handler) [virtual]

Sets the error handler to handler. Clears the error handler if handler is 0.

Ver también:
errorHandler()

Implementa QXmlReader.

void QXmlSimpleReader::setErrorHandler ( QXmlErrorHandler handler) [virtual]

Implementa QXmlReader.

void QXmlSimpleReader::setFeature ( const QString name,
bool  value 
) [virtual]

Sets the state of the feature name to value:

If the feature is not recognized, it is ignored.

The following features are supported: Feature Notes http://xml.org/sax/features/namespaces If this feature is TRUE, namespace processing is performed. http://xml.org/sax/features/namespace-prefixes If this feature is TRUE, the the original prefixed names and attributes used for namespace declarations are reported. http://trolltech.com/xml/features/report-whitespace-only-CharData If this feature is TRUE, CharData that only contain whitespace are not ignored, but are reported via QXmlContentHandler::characters(). http://trolltech.com/xml/features/report-start-end-entity If this feature is TRUE, the parser reports QXmlContentHandler::startEntity() and QXmlContentHandler::endEntity() events. So character data might be reported in chunks. If this feature is FALSE, the parser does not report those events, but rather silently substitutes the entities and reports the character data in one chunk.

xml/tagreader-with-features/tagreader.cpp reader reader setFeature setFeature TRUE

(Code taken from xml/tagreader-with-features/tagreader.cpp)

Ver también:
feature() hasFeature()

Implementa QXmlReader.

void QXmlSimpleReader::setFeature ( const QString name,
bool  value 
) [virtual]

Sets the feature called name to the given value. If the reader doesn't have the feature nothing happens.

Ver también:
feature() hasFeature()

Implementa QXmlReader.

void QXmlSimpleReader::setLexicalHandler ( QXmlLexicalHandler handler) [virtual]

Implementa QXmlReader.

void QXmlSimpleReader::setLexicalHandler ( QXmlLexicalHandler handler) [virtual]

Sets the lexical handler to handler.

Ver también:
lexicalHandler()

Implementa QXmlReader.

void QXmlSimpleReader::setProperty ( const QString name,
void *  value 
) [virtual]

Sets the property name to value. If the reader doesn't have the property nothing happens.

Ver también:
property() hasProperty()

Implementa QXmlReader.

void QXmlSimpleReader::setProperty ( const QString name,
void *  value 
) [virtual]

Implementa QXmlReader.


Documentación de las funciones relacionadas y clases amigas


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'