peiyongz 2004/04/13 09:51:18 Modified: c/src/xercesc/dom/deprecated DOMParser.cpp DOMParser.hpp Log: get/setIdentityConstraintChecking Revision Changes Path 1.32 +11 -1 xml-xerces/c/src/xercesc/dom/deprecated/DOMParser.cpp Index: DOMParser.cpp =================================================================== RCS file: /home/cvs/xml-xerces/c/src/xercesc/dom/deprecated/DOMParser.cpp,v retrieving revision 1.31 retrieving revision 1.32 diff -u -r1.31 -r1.32 --- DOMParser.cpp 17 Dec 2003 00:18:33 -0000 1.31 +++ DOMParser.cpp 13 Apr 2004 16:51:18 -0000 1.32 @@ -244,6 +244,11 @@ return fScanner->getValidationSchemaFullChecking(); } +bool DOMParser::getIdentityConstraintChecking() const +{ + return fScanner->getIdentityConstraintChecking(); +} + int DOMParser::getErrorCount() const { return fScanner->getErrorCount(); @@ -383,6 +388,11 @@ void DOMParser::setValidationSchemaFullChecking(const bool schemaFullChecking) { fScanner->setValidationSchemaFullChecking(schemaFullChecking); +} + +void DOMParser::setIdentityConstraintChecking(const bool identityConstraintChecking) +{ + fScanner->setIdentityConstraintChecking(identityConstraintChecking); } void DOMParser::setExternalSchemaLocation(const XMLCh* const schemaLocation) 1.24 +5 -1 xml-xerces/c/src/xercesc/dom/deprecated/DOMParser.hpp Index: DOMParser.hpp =================================================================== RCS file: /home/cvs/xml-xerces/c/src/xercesc/dom/deprecated/DOMParser.hpp,v retrieving revision 1.23 retrieving revision 1.24 diff -u -r1.23 -r1.24 --- DOMParser.hpp 24 Feb 2004 23:01:02 -0000 1.23 +++ DOMParser.hpp 13 Apr 2004 16:51:18 -0000 1.24 @@ -293,6 +293,8 @@ */ bool getValidationSchemaFullChecking() const; + bool getIdentityConstraintChecking() const; + /** Get error count from the last parse operation. * * This method returns the error count from the last parse @@ -725,6 +727,8 @@ * @see #getValidationSchemaFullChecking */ void setValidationSchemaFullChecking(const bool schemaFullChecking); + + void setIdentityConstraintChecking(const bool identityConstraintChecking); /** * This method allows users to set the toCreateXMLDeclTypeNode flag
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]