http://xml.apache.org/http://www.apache.org/http://www.w3.org/

Home

Readme
Download
Installation
Build

API Docs
Samples
Schema

FAQs
Programming
Migration

Releases
Bug-Reporting
Feedback

Y2K Compliance
PDF Document

CVS Repository
Mail Archive

API Docs for SAX and DOM
 

Main Page   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members   File Members  

SAXParser Class Reference

This class implements the SAX 'Parser' interface and should be used by applications wishing to parse the XML files using SAX. More...

#include <SAXParser.hpp>

Inheritance diagram for SAXParser

Inheritance graph
[legend]
Collaboration diagram for SAXParser:

Collaboration graph
[legend]
List of all members.

Public Types

enum  ValSchemes { Val_Never, Val_Always, Val_Auto }

Public Methods

Constructors and Destructor
 SAXParser (XMLValidator *const valToAdopt=0)
 Constructor with an instance of validator class to use for validation. More...

 ~SAXParser ()
 Destructor.

Getter methods
DocumentHandlergetDocumentHandler ()
 This method returns the installed document handler. More...

const DocumentHandlergetDocumentHandler ()const
 This method returns the installed document handler. More...

EntityResolvergetEntityResolver ()
 This method returns the installed entity resolver. More...

const EntityResolvergetEntityResolver ()const
 This method returns the installed entity resolver. More...

ErrorHandlergetErrorHandler ()
 This method returns the installed error handler. More...

const ErrorHandlergetErrorHandler ()const
 This method returns the installed error handler. More...

const XMLScanner& getScanner ()const
 This method returns a reference to the underlying scanner object. More...

const XMLValidatorgetValidator ()const
 This method returns a reference to the parser's installed validator. More...

ValSchemes getValidationScheme ()const
 This method returns an enumerated value that indicates the current validation scheme set on this parser. More...

bool getDoSchema ()const
 Get the 'do schema' flag. More...

bool getValidationSchemaFullChecking ()const
 Get the 'full schema constraint checking' flag. More...

int getErrorCount ()const
 Get error count from the last parse operation. More...

bool getDoNamespaces ()const
 This method returns the state of the parser's namespace handling capability. More...

bool getExitOnFirstFatalError ()const
 This method returns the state of the parser's exit-on-First-Fatal-Error flag. More...

bool getValidationConstraintFatal ()const
 This method returns the state of the parser's validation-constraint-fatal flag. More...

Setter methods
void setDoNamespaces (const bool newState)
 This method allows users to enable or disable the parser's namespace processing. More...

void setValidationScheme (const ValSchemes newScheme)
 This method allows users to set the validation scheme to be used by this parser. More...

void setDoSchema (const bool newState)
 Set the 'schema support' flag. More...

void setValidationSchemaFullChecking (const bool schemaFullChecking)
 This method allows the user to turn full Schema constraint checking on/off. More...

void setExitOnFirstFatalError (const bool newState)
 This method allows users to set the parser's behaviour when it encounters the first fatal error. More...

void setValidationConstraintFatal (const bool newState)
 This method allows users to set the parser's behaviour when it encounters a validtion constraint error. More...

Advanced document handler list maintenance methods
void installAdvDocHandler (XMLDocumentHandler *const toInstall)
 This method installs the specified 'advanced' document callback handler, thereby allowing the user to customize the processing, if they choose to do so. More...

bool removeAdvDocHandler (XMLDocumentHandler *const toRemove)
 This method removes the 'advanced' document handler callback from the underlying parser scanner. More...

Implementation of SAX 1.0 interface's.
virtual void parse (const InputSource &source,const bool reuseGrammar=false)
 This method invokes the parsing process on the XML file specified by the InputSource parameter. More...

virtual void parse (const XMLCh *const systemId,const bool reuseGrammar=false)
 This method invokes the parsing process on the XML file specified by the Unicode string parameter 'systemId'. More...

virtual void parse (const char *const systemId,const bool reuseGrammar=false)
 This method invokes the parsing process on the XML file specified by the native char* string parameter 'systemId'. More...

virtual void setDocumentHandler (DocumentHandler *const handler)
 This method installs the user specified SAX Document Handler callback function on parser. More...

virtual void setDTDHandler (DTDHandler *const handler)
 This method installs the user specified DTD handler on the parser. More...

virtual void setErrorHandler (ErrorHandler *const handler)
 This method installs the user specified error handler on the parser. More...

virtual void setEntityResolver (EntityResolver *const resolver)
 This method installs the user specified entity resolver on the parser. More...

Progressive scan methods
bool parseFirst (const XMLCh *const systemId,XMLPScanToken &toFill,const bool reuseGrammar=false)
 Begin a progressive parse operation. More...

bool parseFirst (const char *const systemId,XMLPScanToken &toFill,const bool reuseGrammar=false)
 Begin a progressive parse operation. More...

bool parseFirst (const InputSource &source,XMLPScanToken &toFill,const bool reuseGrammar=false)
 Begin a progressive parse operation. More...

bool parseNext (XMLPScanToken &token)
 Continue a progressive parse operation. More...

void parseReset (XMLPScanToken &token)
 Reset the parser after a progressive parse. More...

Implementation of the DocTypeHandler Interface
virtual void attDef (const DTDElementDecl &elemDecl,const DTDAttDef &attDef,const bool ignoring)
 This method is used to report an attribute definition. More...

virtual void doctypeComment (const XMLCh *const comment)
 This method is used to report a comment occurring within the DTD. More...

virtual void doctypeDecl (const DTDElementDecl &elemDecl,const XMLCh *const publicId,const XMLCh *const systemId,const bool hasIntSubset)
 This method is used to report the DOCTYPE declaration. More...

virtual void doctypePI (const XMLCh *const target,const XMLCh *const data)
 This method is used to report any PI declarations occurring inside the DTD definition block. More...

virtual void doctypeWhitespace (const XMLCh *const chars,const unsigned int length)
 This method is used to report any whitespaces occurring inside the DTD definition block. More...

virtual void elementDecl (const DTDElementDecl &decl,const bool isIgnored)
 This method is used to report an element declarations successfully scanned by the parser. More...

virtual void endAttList (const DTDElementDecl &elemDecl)
 This method is used to report the end of an attribute list declaration for an element. More...

virtual void endIntSubset ()
 This method is used to report the end of the internal subset. More...

virtual void endExtSubset ()
 This method is used to report the end of the external subset. More...

virtual void entityDecl (const DTDEntityDecl &entityDecl,const bool isPEDecl,const bool isIgnored)
 This method is used to report any entity declarations. More...

virtual void resetDocType ()
 This method allows the user installed DTD handler to reset itself.

virtual void notationDecl (const XMLNotationDecl &notDecl,const bool isIgnored)
 This method is used to report any notation declarations. More...

virtual void startAttList (const DTDElementDecl &elemDecl)
 This method is used to indicate the start of an element's attribute list declaration. More...

virtual void startIntSubset ()
 This method is used indicate the start of the internal subset. More...

virtual void startExtSubset ()
 This method is used indicate the start of the external subset. More...

virtual void TextDecl (const XMLCh *const versionStr,const XMLCh *const encodingStr)
 This method is used to report the TextDecl. More...

Implementation of the XMLDocumentHandler Interface.
virtual void docCharacters (const XMLCh *const chars,const unsigned int length,const bool cdataSection)
 This method is used to report all the characters scanned by the parser. More...

virtual void docComment (const XMLCh *const comment)
 This method is used to report any comments scanned by the parser. More...

virtual void docPI (const XMLCh *const target,const XMLCh *const data)
 This method is used to report any PI scanned by the parser. More...

virtual void endDocument ()
 This method is used to indicate the end of root element was just scanned by the parser. More...

virtual void endElement (const XMLElementDecl &elemDecl,const unsigned int urlId,const bool isRoot)
 This method is used to indicate the end tag of an element. More...

virtual void endEntityReference (const XMLEntityDecl &entDecl)
 This method is used to indicate that an end of an entity reference was just scanned. More...

virtual void ignorableWhitespace (const XMLCh *const chars,const unsigned int length,const bool cdataSection)
 This method is used to report all the whitespace characters, which are determined to be 'ignorable'. More...

virtual void resetDocument ()
 This method allows the user installed Document Handler and any advanced callback handlers to 'reset' themselves.

virtual void startDocument ()
 This method is used to report the start of the parsing process. More...

virtual void startElement (const XMLElementDecl &elemDecl,const unsigned int urlId,const XMLCh *const elemPrefix,const RefVectorOf< XMLAttr > &attrList,const unsigned int attrCount,const bool isEmpty,const bool isRoot)
 This method is used to report the start of an element. More...

virtual void startEntityReference (const XMLEntityDecl &entDecl)
 This method is used to indicate the start of an entity reference. More...

virtual void XMLDecl (const XMLCh *const versionStr,const XMLCh *const encodingStr,const XMLCh *const standaloneStr,const XMLCh *const actualEncodingStr)
 This method is used to report the XML decl scanned by the parser. More...

Implementation of the XMLErrorReporter Interface.
virtual void error (const unsigned int errCode,const XMLCh *const msgDomain,const XMLErrorReporter::ErrTypes errType,const XMLCh *const errorText,const XMLCh *const systemId,const XMLCh *const publicId,const unsigned int lineNum,const unsigned int colNum)
 This method is used to report back errors found while parsing the XML file. More...

virtual void resetErrors ()
 This method allows the user installed Error Handler callback to 'reset' itself. More...

Implementation of the XMLEntityHandler Interface.
virtual void endInputSource (const InputSource &inputSource)
 This method is used to indicate the end of parsing of an external entity file. More...

virtual bool expandSystemId (const XMLCh *const systemId,XMLBuffer &toFill)
 This method allows an installed XMLEntityHandler to further process any system id's of enternal entities encountered in the XML file being parsed, such as redirection etc. More...

virtual void resetEntities ()
 This method allows the installed XMLEntityHandler to reset itself. More...

virtual InputSourceresolveEntity (const XMLCh *const publicId,const XMLCh *const systemId)
 This method allows a user installed entity handler to further process any pointers to external entities. More...

virtual void startInputSource (const InputSource &inputSource)
 This method is used to indicate the start of parsing an external entity file. More...

Deprecated Methods
bool getDoValidation ()const
 This method returns the state of the parser's validation handling flag which controls whether validation checks are enforced or not. More...

void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation checkslign=top>void setDoValidation (const bool newState)
 This method allows users to enable or disable the parser's validation