You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by ne...@apache.org on 2003/12/02 00:23:27 UTC

cvs commit: xml-xerces/c/src/xercesc/util Base64.hpp PlatformUtils.hpp XMLBigDecimal.hpp XMLBigInteger.hpp XMLDouble.hpp XMLFloat.hpp XMLStringTokenizer.hpp

neilg       2003/12/01 15:23:27

  Modified:    c/src/xercesc/dom DOMError.hpp DOMImplementation.hpp
                        DOMImplementationLS.hpp
               c/src/xercesc/framework LocalFileInputSource.hpp
                        MemBufInputSource.hpp URLInputSource.hpp
                        Wrapper4DOMInputSource.hpp XMLEntityDecl.hpp
                        XMLFormatter.hpp
               c/src/xercesc/framework/psvi PSVIHandler.hpp
                        XSAnnotation.hpp XSAttributeDeclaration.hpp
                        XSAttributeGroupDefinition.hpp
                        XSComplexTypeDefinition.hpp
                        XSElementDeclaration.hpp XSFacet.hpp
                        XSIDCDefinition.hpp XSModelGroup.hpp
                        XSModelGroupDefinition.hpp XSMultiValueFacet.hpp
                        XSNamespaceItem.hpp XSNotationDeclaration.hpp
                        XSObject.hpp XSParticle.hpp
                        XSSimpleTypeDefinition.hpp XSTypeDefinition.hpp
                        XSWildcard.hpp
               c/src/xercesc/parsers AbstractDOMParser.hpp SAXParser.hpp
                        XercesDOMParser.hpp
               c/src/xercesc/sax ErrorHandler.hpp HandlerBase.hpp
                        InputSource.hpp SAXException.hpp
                        SAXParseException.hpp
               c/src/xercesc/util Base64.hpp PlatformUtils.hpp
                        XMLBigDecimal.hpp XMLBigInteger.hpp XMLDouble.hpp
                        XMLFloat.hpp XMLStringTokenizer.hpp
  Log:
  fix for bug 25118; thanks to Jeroen Witmond
  
  Revision  Changes    Path
  1.11      +5 -2      xml-xerces/c/src/xercesc/dom/DOMError.hpp
  
  Index: DOMError.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/dom/DOMError.hpp,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- DOMError.hpp	30 May 2003 16:11:43 -0000	1.10
  +++ DOMError.hpp	1 Dec 2003 23:23:25 -0000	1.11
  @@ -59,6 +59,9 @@
   
   /*
    * $Log$
  + * Revision 1.11  2003/12/01 23:23:25  neilg
  + * fix for bug 25118; thanks to Jeroen Witmond
  + *
    * Revision 1.10  2003/05/30 16:11:43  gareth
    * Fixes so we compile under VC7.1. Patch by Alberto Massari.
    *
  @@ -278,7 +281,7 @@
        *
        * <p><b>"Experimental - subject to change"</b></p>
        *
  -     * @param exception the related exception to set.
  +     * @param exc the related exception to set.
        * @see   getRelatedException
        * @since DOM Level 3
        */
  
  
  
  1.13      +3 -1      xml-xerces/c/src/xercesc/dom/DOMImplementation.hpp
  
  Index: DOMImplementation.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/dom/DOMImplementation.hpp,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- DOMImplementation.hpp	15 May 2003 18:25:53 -0000	1.12
  +++ DOMImplementation.hpp	1 Dec 2003 23:23:25 -0000	1.13
  @@ -182,6 +182,8 @@
        *   When <code>doctype</code> is not <code>null</code>, its
        *   <code>ownerDocument</code> attribute is set to the document
        *   being created.
  +     * @param manager    Pointer to the memory manager to be used to
  +     *                   allocate objects.
        * @return A new <code>DOMDocument</code> object.
        * @exception DOMException
        *   INVALID_CHARACTER_ERR: Raised if the specified qualified name
  
  
  
  1.10      +7 -1      xml-xerces/c/src/xercesc/dom/DOMImplementationLS.hpp
  
  Index: DOMImplementationLS.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/dom/DOMImplementationLS.hpp,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- DOMImplementationLS.hpp	20 Jun 2003 18:47:21 -0000	1.9
  +++ DOMImplementationLS.hpp	1 Dec 2003 23:23:25 -0000	1.10
  @@ -59,6 +59,9 @@
   
   /*
    * $Log$
  + * Revision 1.10  2003/12/01 23:23:25  neilg
  + * fix for bug 25118; thanks to Jeroen Witmond
  + *
    * Revision 1.9  2003/06/20 18:47:21  peiyongz
    * Stateless Grammar Pool :: Part I
    *
  @@ -192,6 +195,9 @@
        * absolute URI. In order to create a DOMBuilder for any kind of schema
        * types (i.e. the DOMBuilder will be free to use any schema found), use
        * the value <code>null</code>.
  +     * @param manager    Pointer to the memory manager to be used to
  +     *                   allocate objects.
  +     * @param gramPool   The collection of cached grammers.
        * @return The newly created <code>DOMBuilder<code> object. This
        * <code>DOMBuilder</code> is either synchronous or asynchronous depending
        * on the value of the <code>mode<code> argument.
  
  
  
  1.4       +11 -1     xml-xerces/c/src/xercesc/framework/LocalFileInputSource.hpp
  
  Index: LocalFileInputSource.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/framework/LocalFileInputSource.hpp,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- LocalFileInputSource.hpp	16 May 2003 21:36:55 -0000	1.3
  +++ LocalFileInputSource.hpp	1 Dec 2003 23:23:25 -0000	1.4
  @@ -56,6 +56,9 @@
   
   /*
    * $Log$
  + * Revision 1.4  2003/12/01 23:23:25  neilg
  + * fix for bug 25118; thanks to Jeroen Witmond
  + *
    * Revision 1.3  2003/05/16 21:36:55  knoaman
    * Memory manager implementation: Modify constructors to pass in the memory manager.
    *
  @@ -155,6 +158,10 @@
         * @param  relativePath    The relative part of the path. It can actually
         *                         be fully qualified, in which case it is taken
         *                         as is.
  +      *
  +      * @param  manager    Pointer to the memory manager to be used to
  +      *                    allocate objects.
  +      *
         * @exception XMLException If the path is relative and doesn't properly
         *            resolve to a file.
         */
  @@ -176,6 +183,9 @@
         * still set them via the parent class' setPublicId() method of course.
         *
         * @param  filePath    The relative or fully qualified path.
  +      *
  +      * @param  manager     Pointer to the memory manager to be used to
  +      *                     allocate objects.
         *
         * @exception XMLException If the path is relative and doesn't properly
         *            resolve to a file.
  
  
  
  1.6       +6 -1      xml-xerces/c/src/xercesc/framework/MemBufInputSource.hpp
  
  Index: MemBufInputSource.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/framework/MemBufInputSource.hpp,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- MemBufInputSource.hpp	30 Jul 2003 14:48:38 -0000	1.5
  +++ MemBufInputSource.hpp	1 Dec 2003 23:23:25 -0000	1.6
  @@ -56,6 +56,9 @@
   
   /*
    * $Log$
  + * Revision 1.6  2003/12/01 23:23:25  neilg
  + * fix for bug 25118; thanks to Jeroen Witmond
  + *
    * Revision 1.5  2003/07/30 14:48:38  peiyongz
    * Allow default value
    *
  @@ -165,6 +168,8 @@
         * @param  adoptBuffer     Indicates whether this object should adopt
         *                         the buffer (i.e. make a copy of it) or just
         *                         use it in place.
  +      * @param  manager         Pointer to the memory manager to be used to
  +      *                         allocate objects.
         */
       MemBufInputSource
       (
  
  
  
  1.4       +17 -1     xml-xerces/c/src/xercesc/framework/URLInputSource.hpp
  
  Index: URLInputSource.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/framework/URLInputSource.hpp,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- URLInputSource.hpp	16 May 2003 21:36:55 -0000	1.3
  +++ URLInputSource.hpp	1 Dec 2003 23:23:25 -0000	1.4
  @@ -56,6 +56,9 @@
   
   /*
    * $Log$
  + * Revision 1.4  2003/12/01 23:23:25  neilg
  + * fix for bug 25118; thanks to Jeroen Witmond
  + *
    * Revision 1.3  2003/05/16 21:36:55  knoaman
    * Memory manager implementation: Modify constructors to pass in the memory manager.
    *
  @@ -146,6 +149,8 @@
         *
         * @param  urlId   The URL which holds the system id of the entity
         *                 to parse.
  +      * @param  manager Pointer to the memory manager to be used to
  +      *                 allocate objects.
         */
       URLInputSource
       (
  @@ -165,6 +170,8 @@
        *
        *  @param  systemId    The possibly relative system id URL. If its relative
        *                      its based on baseId, else its taken as is.
  +     *  @param  manager     Pointer to the memory manager to be used to
  +     *                      allocate objects.
        */
       URLInputSource
       (
  @@ -185,6 +192,9 @@
        *
        *  @param  publicId    The optional public id to set. This is just passed
        *                      on to the parent class for storage.
  +     *
  +     * @param  manager      Pointer to the memory manager to be used to
  +     *                      allocate objects.
        */
       URLInputSource
       (
  @@ -205,6 +215,9 @@
        *
        *  @param  systemId    The possibly relative system id URL. If its relative
        *                      its based on baseId, else its taken as is.
  +     *
  +     *  @param  manager     Pointer to the memory manager to be used to
  +     *                      allocate objects.
        */
       URLInputSource
       (
  @@ -227,6 +240,9 @@
        *  @param  publicId    The optional public id to set. This is just passed
        *                      on to the parent class for storage.
        *                      on to the parent class for storage.
  +     *
  +     *  @param  manager     Pointer to the memory manager to be used to
  +     *                      allocate objects.
        */
       URLInputSource
       (
  
  
  
  1.7       +3 -1      xml-xerces/c/src/xercesc/framework/Wrapper4DOMInputSource.hpp
  
  Index: Wrapper4DOMInputSource.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/framework/Wrapper4DOMInputSource.hpp,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- Wrapper4DOMInputSource.hpp	30 May 2003 16:11:43 -0000	1.6
  +++ Wrapper4DOMInputSource.hpp	1 Dec 2003 23:23:25 -0000	1.7
  @@ -87,6 +87,8 @@
       * @param  inputSource  The DOMInputSource to be wrapped
       * @param  adoptFlag    Indicates if the wrapper should adopt the wrapped
       *                      DOMInputSource. Default is true.
  +    * @param  manager      Pointer to the memory manager to be used to
  +    *                      allocate objects.
       */
       Wrapper4DOMInputSource
       (
  
  
  
  1.9       +10 -1     xml-xerces/c/src/xercesc/framework/XMLEntityDecl.hpp
  
  Index: XMLEntityDecl.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/framework/XMLEntityDecl.hpp,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- XMLEntityDecl.hpp	10 Oct 2003 16:23:29 -0000	1.8
  +++ XMLEntityDecl.hpp	1 Dec 2003 23:23:25 -0000	1.9
  @@ -56,6 +56,9 @@
   
   /*
    * $Log$
  + * Revision 1.9  2003/12/01 23:23:25  neilg
  + * fix for bug 25118; thanks to Jeroen Witmond
  + *
    * Revision 1.8  2003/10/10 16:23:29  peiyongz
    * Implementation of Serialization/Deserialization
    *
  @@ -149,6 +152,8 @@
       /** Constructor with a const entity name
         *
         * @param  entName The new name to give to this entity.
  +      * @param  manager Pointer to the memory manager to be used to
  +      *                 allocate objects.
         */
       XMLEntityDecl
       (
  @@ -161,6 +166,8 @@
         *
         * @param  entName The new name to give to this entity.
         * @param  value   The new value to give to this entity name.
  +      * @param  manager Pointer to the memory manager to be used to
  +      *                 allocate objects.
         */
       XMLEntityDecl
       (
  @@ -174,6 +181,8 @@
         *
         * @param  entName The new name to give to this entity.
         * @param  value   The new value to give to this entity name.
  +      * @param manager  Pointer to the memory manager to be used to
  +      *                 allocate objects.
         */
       XMLEntityDecl
       (
  
  
  
  1.19      +6 -0      xml-xerces/c/src/xercesc/framework/XMLFormatter.hpp
  
  Index: XMLFormatter.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/framework/XMLFormatter.hpp,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- XMLFormatter.hpp	10 Oct 2003 02:06:09 -0000	1.18
  +++ XMLFormatter.hpp	1 Dec 2003 23:23:25 -0000	1.19
  @@ -56,6 +56,9 @@
   
   /*
    * $Log$
  + * Revision 1.19  2003/12/01 23:23:25  neilg
  + * fix for bug 25118; thanks to Jeroen Witmond
  + *
    * Revision 1.18  2003/10/10 02:06:09  neilg
    * fix for bug 21780; thanks to David Cargill
    *
  @@ -290,9 +293,12 @@
       //@{
       /**
        * @param outEncoding the encoding for the formatted content
  +     * @param docVersion  
        * @param target      the formatTarget where the formatted content is written to
        * @param escapeFlags the escape style for certain character
        * @param unrepFlags  the reaction to unrepresentable character
  +     * @param manager     Pointer to the memory manager to be used to
  +     *                    allocate objects.
        */
       XMLFormatter
       (
  
  
  
  1.6       +3 -2      xml-xerces/c/src/xercesc/framework/psvi/PSVIHandler.hpp
  
  Index: PSVIHandler.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/framework/psvi/PSVIHandler.hpp,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- PSVIHandler.hpp	28 Nov 2003 05:13:45 -0000	1.5
  +++ PSVIHandler.hpp	1 Dec 2003 23:23:26 -0000	1.6
  @@ -56,6 +56,9 @@
   
    /*
     * $Log$
  +  * Revision 1.6  2003/12/01 23:23:26  neilg
  +  * fix for bug 25118; thanks to Jeroen Witmond
  +  *
     * Revision 1.5  2003/11/28 05:13:45  neilg
     * remove passing of prefixes in PSVIHandler
     *
  @@ -111,7 +114,6 @@
         * @param  localName The name of the element whose end tag was just
         *                     parsed.
         * @param  uri       The namespace to which the element is bound
  -      * @param  prefix  The string representing the prefix name
         * @param  elementInfo    Object containing the element's PSVI properties
         */
       virtual void handleElementPSVI
  @@ -129,7 +131,6 @@
         * @param  localName The name of the element upon which start tag 
         *          these attributes were encountered.
         * @param  uri       The namespace to which the element is bound
  -      * @param  prefix  The string representing the prefix name
         * @param  psviAttributes   Object containing the attributes' PSVI properties
         *          with information to identify them.
         */
  
  
  
  1.8       +6 -2      xml-xerces/c/src/xercesc/framework/psvi/XSAnnotation.hpp
  
  Index: XSAnnotation.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/framework/psvi/XSAnnotation.hpp,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- XSAnnotation.hpp	28 Nov 2003 14:55:11 -0000	1.7
  +++ XSAnnotation.hpp	1 Dec 2003 23:23:26 -0000	1.8
  @@ -56,6 +56,9 @@
   
   /*
    * $Log$
  + * Revision 1.8  2003/12/01 23:23:26  neilg
  + * fix for bug 25118; thanks to Jeroen Witmond
  + *
    * Revision 1.7  2003/11/28 14:55:11  neilg
    * fix for compilation error on HPUX
    *
  @@ -125,6 +128,7 @@
       /**
         * The default constructor 
         *
  +      * @param  contents    The string that is to be the content of this XSAnnotation
         * @param  manager     The configurable memory manager
         */
       XSAnnotation
  @@ -149,7 +153,7 @@
        * Write contents of the annotation to the specified DOM object. In-scope 
        * namespace declarations for <code>annotation</code> element are added as 
        * attribute nodes of the serialized <code>annotation</code>. 
  -     * @param target  A target pointer to the annotation target object, i.e.
  +     * @param node  A target pointer to the annotation target object, i.e.
        * either <code>DOMDocument</code> or <code>DOMElement</code> cast as 
        * <code>DOMNode</code). 
        * @param targetType  A target type.    
  @@ -161,7 +165,7 @@
        * Write contents of the annotation to the specified object. 
        * The corresponding events for all in-scope namespace declarations are 
        * sent via the specified document handler. 
  -     * @param target  A target pointer to the annotation target object, i.e. 
  +     * @param handler  A target pointer to the annotation target object, i.e. 
        *   <code>ContentHandler</code>.
        */    
       void writeAnnotation(ContentHandler* handler);
  
  
  
  1.7       +12 -1     xml-xerces/c/src/xercesc/framework/psvi/XSAttributeDeclaration.hpp
  
  Index: XSAttributeDeclaration.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/framework/psvi/XSAttributeDeclaration.hpp,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- XSAttributeDeclaration.hpp	21 Nov 2003 22:34:45 -0000	1.6
  +++ XSAttributeDeclaration.hpp	1 Dec 2003 23:23:26 -0000	1.7
  @@ -56,6 +56,9 @@
   
   /*
    * $Log$
  + * Revision 1.7  2003/12/01 23:23:26  neilg
  + * fix for bug 25118; thanks to Jeroen Witmond
  + *
    * Revision 1.6  2003/11/21 22:34:45  neilg
    * More schema component model implementation, thanks to David Cargill.
    * In particular, this cleans up and completes the XSModel, XSNamespaceItem,
  @@ -113,6 +116,12 @@
       /**
         * The default constructor 
         *
  +      * @param  attDef      
  +      * @param  typeDef     
  +      * @param  annot       
  +      * @param  xsModel     
  +      * @param  scope       
  +      * @param  enclosingCTDefinition
         * @param  manager     The configurable memory manager
         */
       XSAttributeDeclaration
  
  
  
  1.7       +11 -1     xml-xerces/c/src/xercesc/framework/psvi/XSAttributeGroupDefinition.hpp
  
  Index: XSAttributeGroupDefinition.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/framework/psvi/XSAttributeGroupDefinition.hpp,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- XSAttributeGroupDefinition.hpp	21 Nov 2003 22:34:45 -0000	1.6
  +++ XSAttributeGroupDefinition.hpp	1 Dec 2003 23:23:26 -0000	1.7
  @@ -56,6 +56,9 @@
   
   /*
    * $Log$
  + * Revision 1.7  2003/12/01 23:23:26  neilg
  + * fix for bug 25118; thanks to Jeroen Witmond
  + *
    * Revision 1.6  2003/11/21 22:34:45  neilg
    * More schema component model implementation, thanks to David Cargill.
    * In particular, this cleans up and completes the XSModel, XSNamespaceItem,
  @@ -113,6 +116,11 @@
       /**
         * The default constructor 
         *
  +      * @param  xercesAttGroupInfo
  +      * @param  xsAttList
  +      * @param  xsWildcard
  +      * @param  xsAnnot
  +      * @param  xsModel
         * @param  manager     The configurable memory manager
         */
       XSAttributeGroupDefinition
  
  
  
  1.7       +13 -2     xml-xerces/c/src/xercesc/framework/psvi/XSComplexTypeDefinition.hpp
  
  Index: XSComplexTypeDefinition.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/framework/psvi/XSComplexTypeDefinition.hpp,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- XSComplexTypeDefinition.hpp	25 Nov 2003 18:08:31 -0000	1.6
  +++ XSComplexTypeDefinition.hpp	1 Dec 2003 23:23:26 -0000	1.7
  @@ -56,6 +56,9 @@
   
   /*
    * $Log$
  + * Revision 1.7  2003/12/01 23:23:26  neilg
  + * fix for bug 25118; thanks to Jeroen Witmond
  + *
    * Revision 1.6  2003/11/25 18:08:31  knoaman
    * Misc. PSVI updates. Thanks to David Cargill.
    *
  @@ -139,6 +142,14 @@
       /**
         * The default constructor 
         *
  +      * @param  complexTypeInfo
  +      * @param  xsWildcard
  +      * @param  xsSimpleType
  +      * @param  xsAttList
  +      * @param  xsBaseType
  +      * @param  xsParticle
  +      * @param  headAnnot
  +      * @param  xsModel
         * @param  manager     The configurable memory manager
         */
       XSComplexTypeDefinition
  @@ -212,7 +223,7 @@
   
       /**
        * [prohibited substitutions]: a subset of {extension, restriction}
  -     * @param restriction  Extention or restriction constants (see 
  +     * @param toTest  Extention or restriction constants (see 
        *   <code>XSObject</code>). 
        * @return True if toTest is a prohibited substitution, otherwise 
        *   false.
  
  
  
  1.8       +12 -1     xml-xerces/c/src/xercesc/framework/psvi/XSElementDeclaration.hpp
  
  Index: XSElementDeclaration.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/framework/psvi/XSElementDeclaration.hpp,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- XSElementDeclaration.hpp	1 Dec 2003 20:41:25 -0000	1.7
  +++ XSElementDeclaration.hpp	1 Dec 2003 23:23:26 -0000	1.8
  @@ -56,6 +56,9 @@
   
   /*
    * $Log$
  + * Revision 1.8  2003/12/01 23:23:26  neilg
  + * fix for bug 25118; thanks to Jeroen Witmond
  + *
    * Revision 1.7  2003/12/01 20:41:25  neilg
    * fix for infinite loop between XSComplexTypeDefinitions and XSElementDeclarations; from David Cargill
    *
  @@ -116,6 +119,14 @@
       /**
         * The default constructor 
         *
  +      * @param  schemaElementDecl
  +      * @param  typeDefinition
  +      * @param  substitutionGroupAffiliation
  +      * @param  annot
  +      * @param  identityConstraints
  +      * @param  xsModel
  +      * @param  elemScope
  +      * @param  enclosingTypeDefinition
         * @param  manager     The configurable memory manager
         */
       XSElementDeclaration
  
  
  
  1.6       +9 -1      xml-xerces/c/src/xercesc/framework/psvi/XSFacet.hpp
  
  Index: XSFacet.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/framework/psvi/XSFacet.hpp,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- XSFacet.hpp	21 Nov 2003 17:29:53 -0000	1.5
  +++ XSFacet.hpp	1 Dec 2003 23:23:26 -0000	1.6
  @@ -56,6 +56,9 @@
   
   /*
    * $Log$
  + * Revision 1.6  2003/12/01 23:23:26  neilg
  + * fix for bug 25118; thanks to Jeroen Witmond
  + *
    * Revision 1.5  2003/11/21 17:29:53  knoaman
    * PSVI update
    *
  @@ -106,6 +109,11 @@
       /**
         * The default constructor 
         *
  +      * @param  facetKind
  +      * @param  lexicalValue
  +      * @param  isFixed
  +      * @param  annot
  +      * @param  xsModel
         * @param  manager     The configurable memory manager
         */
       XSFacet
  
  
  
  1.6       +9 -1      xml-xerces/c/src/xercesc/framework/psvi/XSIDCDefinition.hpp
  
  Index: XSIDCDefinition.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/framework/psvi/XSIDCDefinition.hpp,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- XSIDCDefinition.hpp	21 Nov 2003 17:29:53 -0000	1.5
  +++ XSIDCDefinition.hpp	1 Dec 2003 23:23:26 -0000	1.6
  @@ -56,6 +56,9 @@
   
   /*
    * $Log$
  + * Revision 1.6  2003/12/01 23:23:26  neilg
  + * fix for bug 25118; thanks to Jeroen Witmond
  + *
    * Revision 1.5  2003/11/21 17:29:53  knoaman
    * PSVI update
    *
  @@ -122,6 +125,11 @@
       /**
         * The default constructor 
         *
  +      * @param  identityConstraint
  +      * @param  keyIC
  +      * @param  headAnnot
  +      * @param  stringList
  +      * @param  xsModel
         * @param  manager     The configurable memory manager
         */
       XSIDCDefinition
  
  
  
  1.5       +8 -1      xml-xerces/c/src/xercesc/framework/psvi/XSModelGroup.hpp
  
  Index: XSModelGroup.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/framework/psvi/XSModelGroup.hpp,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- XSModelGroup.hpp	21 Nov 2003 17:29:53 -0000	1.4
  +++ XSModelGroup.hpp	1 Dec 2003 23:23:26 -0000	1.5
  @@ -56,6 +56,9 @@
   
   /*
    * $Log$
  + * Revision 1.5  2003/12/01 23:23:26  neilg
  + * fix for bug 25118; thanks to Jeroen Witmond
  + *
    * Revision 1.4  2003/11/21 17:29:53  knoaman
    * PSVI update
    *
  @@ -121,6 +124,10 @@
       /**
         * The default constructor 
         *
  +      * @param  compositorType
  +      * @param  particleList
  +      * @param  annot
  +      * @param  xsModel
         * @param  manager     The configurable memory manager
         */
       XSModelGroup
  
  
  
  1.5       +8 -1      xml-xerces/c/src/xercesc/framework/psvi/XSModelGroupDefinition.hpp
  
  Index: XSModelGroupDefinition.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/framework/psvi/XSModelGroupDefinition.hpp,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- XSModelGroupDefinition.hpp	21 Nov 2003 17:29:53 -0000	1.4
  +++ XSModelGroupDefinition.hpp	1 Dec 2003 23:23:26 -0000	1.5
  @@ -56,6 +56,9 @@
   
   /*
    * $Log$
  + * Revision 1.5  2003/12/01 23:23:26  neilg
  + * fix for bug 25118; thanks to Jeroen Witmond
  + *
    * Revision 1.4  2003/11/21 17:29:53  knoaman
    * PSVI update
    *
  @@ -105,6 +108,10 @@
       /**
         * The default constructor 
         *
  +      * @param  groupInfo
  +      * @param  groupParticle
  +      * @param  annot
  +      * @param  xsModel
         * @param  manager     The configurable memory manager
         */
       XSModelGroupDefinition
  
  
  
  1.6       +9 -1      xml-xerces/c/src/xercesc/framework/psvi/XSMultiValueFacet.hpp
  
  Index: XSMultiValueFacet.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/framework/psvi/XSMultiValueFacet.hpp,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- XSMultiValueFacet.hpp	21 Nov 2003 17:34:04 -0000	1.5
  +++ XSMultiValueFacet.hpp	1 Dec 2003 23:23:26 -0000	1.6
  @@ -56,6 +56,9 @@
   
   /*
    * $Log$
  + * Revision 1.6  2003/12/01 23:23:26  neilg
  + * fix for bug 25118; thanks to Jeroen Witmond
  + *
    * Revision 1.5  2003/11/21 17:34:04  knoaman
    * PSVI update
    *
  @@ -106,6 +109,11 @@
       /**
         * The default constructor 
         *
  +      * @param  facetKind
  +      * @param  lexicalValues
  +      * @param  isFixed
  +      * @param  headAnnot
  +      * @param  xsModel
         * @param  manager     The configurable memory manager
         */
       XSMultiValueFacet
  
  
  
  1.7       +8 -1      xml-xerces/c/src/xercesc/framework/psvi/XSNamespaceItem.hpp
  
  Index: XSNamespaceItem.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/framework/psvi/XSNamespaceItem.hpp,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- XSNamespaceItem.hpp	21 Nov 2003 22:34:45 -0000	1.6
  +++ XSNamespaceItem.hpp	1 Dec 2003 23:23:26 -0000	1.7
  @@ -56,6 +56,9 @@
   
   /*
    * $Log$
  + * Revision 1.7  2003/12/01 23:23:26  neilg
  + * fix for bug 25118; thanks to Jeroen Witmond
  + *
    * Revision 1.6  2003/11/21 22:34:45  neilg
    * More schema component model implementation, thanks to David Cargill.
    * In particular, this cleans up and completes the XSModel, XSNamespaceItem,
  @@ -124,6 +127,8 @@
       /**
         * The default constructor 
         *
  +      * @param  xsModel
  +      * @param  grammar
         * @param  manager     The configurable memory manager
         */
       XSNamespaceItem
  
  
  
  1.6       +7 -1      xml-xerces/c/src/xercesc/framework/psvi/XSNotationDeclaration.hpp
  
  Index: XSNotationDeclaration.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/framework/psvi/XSNotationDeclaration.hpp,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- XSNotationDeclaration.hpp	21 Nov 2003 17:34:04 -0000	1.5
  +++ XSNotationDeclaration.hpp	1 Dec 2003 23:23:26 -0000	1.6
  @@ -56,6 +56,9 @@
   
   /*
    * $Log$
  + * Revision 1.6  2003/12/01 23:23:26  neilg
  + * fix for bug 25118; thanks to Jeroen Witmond
  + *
    * Revision 1.5  2003/11/21 17:34:04  knoaman
    * PSVI update
    *
  @@ -106,6 +109,9 @@
       /**
         * The default constructor 
         *
  +      * @param  xmlNotationDecl
  +      * @param  annot
  +      * @param  xsModel
         * @param  manager     The configurable memory manager
         */
       XSNotationDeclaration
  
  
  
  1.10      +6 -1      xml-xerces/c/src/xercesc/framework/psvi/XSObject.hpp
  
  Index: XSObject.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/framework/psvi/XSObject.hpp,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- XSObject.hpp	25 Nov 2003 15:10:44 -0000	1.9
  +++ XSObject.hpp	1 Dec 2003 23:23:26 -0000	1.10
  @@ -56,6 +56,9 @@
   
   /*
    * $Log$
  + * Revision 1.10  2003/12/01 23:23:26  neilg
  + * fix for bug 25118; thanks to Jeroen Witmond
  + *
    * Revision 1.9  2003/11/25 15:10:44  jberry
    * Eliminate some compiler warnings concerning comments inside of comments
    *
  @@ -121,6 +124,8 @@
       /**
         * The default constructor 
         *
  +      * @param  compType
  +      * @param  xsModel
         * @param  manager     The configurable memory manager
         */
       XSObject
  
  
  
  1.5       +9 -1      xml-xerces/c/src/xercesc/framework/psvi/XSParticle.hpp
  
  Index: XSParticle.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/framework/psvi/XSParticle.hpp,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- XSParticle.hpp	21 Nov 2003 17:34:04 -0000	1.4
  +++ XSParticle.hpp	1 Dec 2003 23:23:26 -0000	1.5
  @@ -56,6 +56,9 @@
   
   /*
    * $Log$
  + * Revision 1.5  2003/12/01 23:23:26  neilg
  + * fix for bug 25118; thanks to Jeroen Witmond
  + *
    * Revision 1.4  2003/11/21 17:34:04  knoaman
    * PSVI update
    *
  @@ -124,6 +127,11 @@
       /**
         * The default constructor 
         *
  +      * @param  termType
  +      * @param  xsModel
  +      * @param  particleTerm
  +      * @param  minOccurs
  +      * @param  maxOccurs
         * @param  manager     The configurable memory manager
         */
       XSParticle
  
  
  
  1.9       +11 -1     xml-xerces/c/src/xercesc/framework/psvi/XSSimpleTypeDefinition.hpp
  
  Index: XSSimpleTypeDefinition.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/framework/psvi/XSSimpleTypeDefinition.hpp,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- XSSimpleTypeDefinition.hpp	25 Nov 2003 18:08:31 -0000	1.8
  +++ XSSimpleTypeDefinition.hpp	1 Dec 2003 23:23:26 -0000	1.9
  @@ -56,6 +56,9 @@
   
   /*
    * $Log$
  + * Revision 1.9  2003/12/01 23:23:26  neilg
  + * fix for bug 25118; thanks to Jeroen Witmond
  + *
    * Revision 1.8  2003/11/25 18:08:31  knoaman
    * Misc. PSVI updates. Thanks to David Cargill.
    *
  @@ -211,6 +214,13 @@
       /**
         * The default constructor 
         *
  +      * @param  datatypeValidator
  +      * @param  stVariety
  +      * @param  xsBaseType
  +      * @param  primitiveOrItemType
  +      * @param  memberTypes
  +      * @param  headAnnot
  +      * @param  xsModel
         * @param  manager     The configurable memory manager
         */
       XSSimpleTypeDefinition
  
  
  
  1.8       +7 -1      xml-xerces/c/src/xercesc/framework/psvi/XSTypeDefinition.hpp
  
  Index: XSTypeDefinition.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/framework/psvi/XSTypeDefinition.hpp,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- XSTypeDefinition.hpp	25 Nov 2003 18:08:31 -0000	1.7
  +++ XSTypeDefinition.hpp	1 Dec 2003 23:23:26 -0000	1.8
  @@ -56,6 +56,9 @@
   
   /*
    * $Log$
  + * Revision 1.8  2003/12/01 23:23:26  neilg
  + * fix for bug 25118; thanks to Jeroen Witmond
  + *
    * Revision 1.7  2003/11/25 18:08:31  knoaman
    * Misc. PSVI updates. Thanks to David Cargill.
    *
  @@ -122,6 +125,9 @@
       /**
         * The default constructor 
         *
  +      * @param  typeCategory
  +      * @param  xsBaseType
  +      * @param  xsModel
         * @param  manager     The configurable memory manager
         */
       XSTypeDefinition
  
  
  
  1.6       +7 -1      xml-xerces/c/src/xercesc/framework/psvi/XSWildcard.hpp
  
  Index: XSWildcard.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/framework/psvi/XSWildcard.hpp,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- XSWildcard.hpp	21 Nov 2003 17:34:04 -0000	1.5
  +++ XSWildcard.hpp	1 Dec 2003 23:23:26 -0000	1.6
  @@ -56,6 +56,9 @@
   
   /*
    * $Log$
  + * Revision 1.6  2003/12/01 23:23:26  neilg
  + * fix for bug 25118; thanks to Jeroen Witmond
  + *
    * Revision 1.5  2003/11/21 17:34:04  knoaman
    * PSVI update
    *
  @@ -143,6 +146,9 @@
       /**
         * The default constructor 
         *
  +      * @param  attWildCard
  +      * @param  annot
  +      * @param  xsModel
         * @param  manager     The configurable memory manager
         */
       XSWildcard
  
  
  
  1.26      +3 -0      xml-xerces/c/src/xercesc/parsers/AbstractDOMParser.hpp
  
  Index: AbstractDOMParser.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/parsers/AbstractDOMParser.hpp,v
  retrieving revision 1.25
  retrieving revision 1.26
  diff -u -r1.25 -r1.26
  --- AbstractDOMParser.hpp	28 Nov 2003 05:15:07 -0000	1.25
  +++ AbstractDOMParser.hpp	1 Dec 2003 23:23:26 -0000	1.26
  @@ -1371,6 +1371,9 @@
         * @param gramPool   Pointer to the grammar pool instance from 
         *                   external application (through derivatives).
         *                   The parser does NOT own it.
  +      *
  +      * @param manager    Pointer to the memory manager to be used to
  +      *                   allocate objects.
         */
       AbstractDOMParser
       (
  
  
  
  1.28      +7 -1      xml-xerces/c/src/xercesc/parsers/SAXParser.hpp
  
  Index: SAXParser.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/parsers/SAXParser.hpp,v
  retrieving revision 1.27
  retrieving revision 1.28
  diff -u -r1.27 -r1.28
  --- SAXParser.hpp	6 Nov 2003 15:30:07 -0000	1.27
  +++ SAXParser.hpp	1 Dec 2003 23:23:26 -0000	1.28
  @@ -56,6 +56,9 @@
   
   /*
    * $Log$
  + * Revision 1.28  2003/12/01 23:23:26  neilg
  + * fix for bug 25118; thanks to Jeroen Witmond
  + *
    * Revision 1.27  2003/11/06 15:30:07  neilg
    * first part of PSVI/schema component model implementation, thanks to David Cargill.  This covers setting the PSVIHandler on parser objects, as well as implementing XSNotation, XSSimpleTypeDefinition, XSIDCDefinition, and most of XSWildcard, XSComplexTypeDefinition, XSElementDeclaration, XSAttributeDeclaration and XSAttributeUse.
    *
  @@ -314,6 +317,9 @@
         * validation.
         * @param valToAdopt Pointer to the validator instance to use. The
         *                   parser is responsible for freeing the memory.
  +      * @param manager    Pointer to the memory manager to be used to
  +      *                   allocate objects.
  +      * @param gramPool   The collection of cached grammers.
         */
       SAXParser
       (
  
  
  
  1.17      +3 -1      xml-xerces/c/src/xercesc/parsers/XercesDOMParser.hpp
  
  Index: XercesDOMParser.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/parsers/XercesDOMParser.hpp,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- XercesDOMParser.hpp	30 Oct 2003 21:37:31 -0000	1.16
  +++ XercesDOMParser.hpp	1 Dec 2003 23:23:26 -0000	1.17
  @@ -105,6 +105,8 @@
         *
         * @param valToAdopt Pointer to the validator instance to use. The
         *                   parser is responsible for freeing the memory.
  +      * @param  manager   Pointer to the memory manager to be used to
  +      *                   allocate objects.
         */
       XercesDOMParser
       (
  
  
  
  1.5       +10 -7     xml-xerces/c/src/xercesc/sax/ErrorHandler.hpp
  
  Index: ErrorHandler.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/sax/ErrorHandler.hpp,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- ErrorHandler.hpp	30 May 2003 16:11:44 -0000	1.4
  +++ ErrorHandler.hpp	1 Dec 2003 23:23:26 -0000	1.5
  @@ -56,6 +56,9 @@
   
   /*
    * $Log$
  + * Revision 1.5  2003/12/01 23:23:26  neilg
  + * fix for bug 25118; thanks to Jeroen Witmond
  + *
    * Revision 1.4  2003/05/30 16:11:44  gareth
    * Fixes so we compile under VC7.1. Patch by Alberto Massari.
    *
  @@ -159,8 +162,8 @@
       * after invoking this method: it should still be possible for the
       * application to process the document through to the end.</p>
       *
  -    * @param exception The warning information encapsulated in a
  -    *                  SAX parse exception.
  +    * @param exc The warning information encapsulated in a
  +    *            SAX parse exception.
       * @exception SAXException Any SAX exception, possibly
       *            wrapping another exception.
       * @see SAXParseException#SAXParseException
  @@ -183,8 +186,8 @@
       * error even if the XML 1.0 recommendation does not require it to
       * do so.</p>
       *
  -    * @param exception The error information encapsulated in a
  -    *                  SAX parse exception.
  +    * @param exc The error information encapsulated in a
  +    *            SAX parse exception.
       * @exception SAXException Any SAX exception, possibly
       *            wrapping another exception.
       * @see SAXParseException#SAXParseException
  @@ -205,8 +208,8 @@
       * messages: in fact, SAX parsers are free to stop reporting any
       * other events once this method has been invoked.</p>
       *
  -    * @param exception The error information encapsulated in a
  -    *                  SAX parse exception.
  +    * @param exc The error information encapsulated in a
  +    *            SAX parse exception.
       * @exception SAXException Any SAX exception, possibly
       *            wrapping another exception.
       * @see SAXParseException#SAXParseException
  
  
  
  1.7       +7 -4      xml-xerces/c/src/xercesc/sax/HandlerBase.hpp
  
  Index: HandlerBase.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/sax/HandlerBase.hpp,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- HandlerBase.hpp	30 May 2003 16:11:44 -0000	1.6
  +++ HandlerBase.hpp	1 Dec 2003 23:23:26 -0000	1.7
  @@ -56,6 +56,9 @@
   
   /*
    * $Log$
  + * Revision 1.7  2003/12/01 23:23:26  neilg
  + * fix for bug 25118; thanks to Jeroen Witmond
  + *
    * Revision 1.6  2003/05/30 16:11:44  gareth
    * Fixes so we compile under VC7.1. Patch by Alberto Massari.
    *
  @@ -336,7 +339,7 @@
       * for each error, such as inserting the message in a log file or
       * printing it to the console.</p>
       *
  -    * @param exception The warning information encoded as an exception.
  +    * @param exc The warning information encoded as an exception.
       * @exception SAXException Any SAX exception, possibly
       *            wrapping another exception.
       * @see ErrorHandler#warning
  @@ -355,7 +358,7 @@
       * method is invoked, since the document is no longer reliable, and
       * the parser may no longer report parsing events.</p>
       *
  -    * @param exception The error information encoded as an exception.
  +    * @param exc The error information encoded as an exception.
       * @exception SAXException Any SAX exception, possibly
       *            wrapping another exception.
       * @see ErrorHandler#fatalError
  @@ -371,7 +374,7 @@
       * for each warning, such as inserting the message in a log file or
       * printing it to the console.</p>
       *
  -    * @param exception The warning information encoded as an exception.
  +    * @param exc The warning information encoded as an exception.
       * @exception SAXException Any SAX exception, possibly
       *            wrapping another exception.
       * @see ErrorHandler#warning
  
  
  
  1.10      +12 -1     xml-xerces/c/src/xercesc/sax/InputSource.hpp
  
  Index: InputSource.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/sax/InputSource.hpp,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- InputSource.hpp	17 Nov 2003 10:52:15 -0000	1.9
  +++ InputSource.hpp	1 Dec 2003 23:23:26 -0000	1.10
  @@ -56,6 +56,9 @@
   
   /*
    * $Log$
  + * Revision 1.10  2003/12/01 23:23:26  neilg
  + * fix for bug 25118; thanks to Jeroen Witmond
  + *
    * Revision 1.9  2003/11/17 10:52:15  amassari
    * Fixed documentation bug#24746
    *
  @@ -319,6 +322,8 @@
   
       /** Constructor with a system identifier as XMLCh type.
         * @param systemId The system identifier (URI).
  +      * @param manager    Pointer to the memory manager to be used to
  +      *                   allocate objects.
         */
       InputSource(const XMLCh* const systemId,
                   MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager);
  @@ -326,6 +331,8 @@
       /** Constructor with a system and public identifiers
         * @param systemId The system identifier (URI).
         * @param publicId The public identifier as in the entity definition.
  +      * @param manager    Pointer to the memory manager to be used to
  +      *                   allocate objects.
         */
       InputSource
       (
  @@ -336,6 +343,8 @@
   
       /** Constructor witha system identifier as string
         * @param systemId The system identifier (URI).
  +      * @param manager    Pointer to the memory manager to be used to
  +      *                   allocate objects.
         */
       InputSource(const char* const systemId,
                   MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager);
  @@ -343,6 +352,8 @@
       /** Constructor witha system and public identifiers. Both as string
         * @param systemId The system identifier (URI).
         * @param publicId The public identifier as in the entity definition.
  +      * @param manager    Pointer to the memory manager to be used to
  +      *                   allocate objects.
         */
       InputSource
       (
  
  
  
  1.6       +18 -1     xml-xerces/c/src/xercesc/sax/SAXException.hpp
  
  Index: SAXException.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/sax/SAXException.hpp,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- SAXException.hpp	13 Aug 2003 15:43:24 -0000	1.5
  +++ SAXException.hpp	1 Dec 2003 23:23:26 -0000	1.6
  @@ -56,6 +56,9 @@
   
   /*
    * $Log$
  + * Revision 1.6  2003/12/01 23:23:26  neilg
  + * fix for bug 25118; thanks to Jeroen Witmond
  + *
    * Revision 1.5  2003/08/13 15:43:24  knoaman
    * Use memory manager when creating SAX exceptions.
    *
  @@ -140,6 +143,8 @@
       /** @name Constructors and Destructor */
       //@{
       /** Default constructor
  +     * @param manager    Pointer to the memory manager to be used to
  +     *                   allocate objects.
        */
       SAXException(MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager) :
   
  @@ -152,6 +157,8 @@
       * Create a new SAXException.
       *
       * @param msg The error or warning message.
  +    * @param manager    Pointer to the memory manager to be used to
  +    *                   allocate objects.
       */
       SAXException(const XMLCh* const msg,
                    MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager) :
  @@ -165,6 +172,8 @@
       * Create a new SAXException.
       *
       * @param msg The error or warning message.
  +    * @param manager    Pointer to the memory manager to be used to
  +    *                   allocate objects.
       */
       SAXException(const char* const msg,
                    MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager) :
  @@ -248,6 +257,8 @@
       * Create a new SAXException.
       *
       * @param msg The error or warning message.
  +    * @param manager    Pointer to the memory manager to be used to
  +    *                   allocate objects.
       */
       SAXNotSupportedException(const XMLCh* const msg,
                                MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager);
  @@ -256,6 +267,8 @@
       * Create a new SAXException.
       *
       * @param msg The error or warning message.
  +    * @param manager    Pointer to the memory manager to be used to
  +    *                   allocate objects.
       */
       SAXNotSupportedException(const char* const msg,
                                MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager);
  @@ -277,6 +290,8 @@
       * Create a new SAXException.
       *
       * @param msg The error or warning message.
  +    * @param manager    Pointer to the memory manager to be used to
  +    *                   allocate objects.
       */
       SAXNotRecognizedException(const XMLCh* const msg,
                                 MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager);
  @@ -285,6 +300,8 @@
       * Create a new SAXException.
       *
       * @param msg The error or warning message.
  +    * @param manager    Pointer to the memory manager to be used to
  +    *                   allocate objects.
       */
       SAXNotRecognizedException(const char* const msg,
                                 MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager);
  
  
  
  1.6       +8 -1      xml-xerces/c/src/xercesc/sax/SAXParseException.hpp
  
  Index: SAXParseException.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/sax/SAXParseException.hpp,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- SAXParseException.hpp	13 Aug 2003 15:43:24 -0000	1.5
  +++ SAXParseException.hpp	1 Dec 2003 23:23:26 -0000	1.6
  @@ -56,6 +56,9 @@
   
   /*
    * $Log$
  + * Revision 1.6  2003/12/01 23:23:26  neilg
  + * fix for bug 25118; thanks to Jeroen Witmond
  + *
    * Revision 1.5  2003/08/13 15:43:24  knoaman
    * Use memory manager when creating SAX exceptions.
    *
  @@ -132,6 +135,8 @@
       *
       * @param message The error or warning message.
       * @param locator The locator object for the error or warning.
  +    * @param manager    Pointer to the memory manager to be used to
  +    *                   allocate objects.
       * @see Locator#Locator
       * @see Parser#setLocale
       */
  @@ -156,6 +161,8 @@
       *                   caused the error or warning.
       * @param columnNumber The column number of the end of the text that
       *                     caused the error or warning.
  +    * @param manager    Pointer to the memory manager to be used to
  +    *                   allocate objects.
       * @see Parser#setLocale
       */
       SAXParseException
  
  
  
  1.7       +4 -4      xml-xerces/c/src/xercesc/util/Base64.hpp
  
  Index: Base64.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/util/Base64.hpp,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- Base64.hpp	20 May 2003 21:32:02 -0000	1.6
  +++ Base64.hpp	1 Dec 2003 23:23:27 -0000	1.7
  @@ -95,7 +95,7 @@
        * @param inputData Binary data in XMLByte stream.
        * @param inputLength Length of the XMLByte stream.
        * @param outputLength Length of the encoded Base64 byte stream.
  -     * @param memMgr, client provided memory manager
  +     * @param memMgr client provided memory manager
        * @return Encoded Base64 data in XMLByte stream,
        *      or NULL if input data can not be encoded.
        * @see   XMLString::release(XMLByte**)
  @@ -117,7 +117,7 @@
        *
        * @param inputData Base64 data in XMLByte stream.
        * @param outputLength Length of decoded XMLByte stream.
  -     * @param memMgr, client provided memory manager
  +     * @param memMgr client provided memory manager
        * @return Decoded binary data in XMLByte stream,
        *      or NULL if input data can not be decoded.
        * @see   XMLString::release(XMLByte**)
  @@ -138,7 +138,7 @@
        *
        * @param inputData Base64 data in XMLCh stream.
        * @param outputLength Length of decoded XMLCh stream
  -     * @param memMgr, client provided memory manager
  +     * @param memMgr client provided memory manager
        * @return Decoded binary data in XMLCh stream,
        *      or NULL if input data can not be decoded.
        * @see   XMLString::release(XMLCh**)
  
  
  
  1.19      +4 -1      xml-xerces/c/src/xercesc/util/PlatformUtils.hpp
  
  Index: PlatformUtils.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/util/PlatformUtils.hpp,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- PlatformUtils.hpp	27 Oct 2003 14:47:33 -0000	1.18
  +++ PlatformUtils.hpp	1 Dec 2003 23:23:27 -0000	1.19
  @@ -401,6 +401,9 @@
         *
         * @param srcPath The path of the file for which you want the full path
         *
  +      * @param manager Pointer to the memory manager to be used to
  +      *                allocate objects.
  +      *
         * @return Returns the fully qualified path of the file name including
         *         the file name. This is dyanmically allocated and must be
         *         deleted  by the caller when its no longer needed! The memory
  
  
  
  1.13      +6 -4      xml-xerces/c/src/xercesc/util/XMLBigDecimal.hpp
  
  Index: XMLBigDecimal.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/util/XMLBigDecimal.hpp,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- XMLBigDecimal.hpp	23 Sep 2003 18:16:07 -0000	1.12
  +++ XMLBigDecimal.hpp	1 Dec 2003 23:23:27 -0000	1.13
  @@ -75,8 +75,10 @@
        * Constructs a newly allocated <code>XMLBigDecimal</code> object that
        * represents the value represented by the string.
        *
  -     * @param      strValue the <code>String</code> to be converted to an
  -     *                      <code>XMLBigDecimal</code>.
  +     * @param  strValue the <code>String</code> to be converted to an
  +     *                  <code>XMLBigDecimal</code>.
  +     * @param  manager  Pointer to the memory manager to be used to
  +     *                  allocate objects.
        * @exception  NumberFormatException  if the <code>String</code> does not
        *               contain a parsable XMLBigDecimal.
        */
  @@ -114,7 +116,7 @@
       /**
        * Compares this object to the specified object.
        *
  -     * @param   toCompare   the object to compare with.
  +     * @param   other   the object to compare with.
        * @return  <code>-1</code> value is less than other's
        *          <code>0</code>  value equals to other's
        *          <code>+1</code> value is greater than other's
  
  
  
  1.9       +3 -1      xml-xerces/c/src/xercesc/util/XMLBigInteger.hpp
  
  Index: XMLBigInteger.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/util/XMLBigInteger.hpp,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- XMLBigInteger.hpp	16 May 2003 06:01:53 -0000	1.8
  +++ XMLBigInteger.hpp	1 Dec 2003 23:23:27 -0000	1.9
  @@ -77,6 +77,8 @@
        *
        * @param      strValue   the <code>String</code> to be converted to an
        *                       <code>XMLBigInteger</code>.
  +     * @param manager    Pointer to the memory manager to be used to
  +     *                   allocate objects.
        * @exception  NumberFormatException  if the <code>String</code> does not
        *               contain a parsable XMLBigInteger.
        */
  
  
  
  1.7       +7 -2      xml-xerces/c/src/xercesc/util/XMLDouble.hpp
  
  Index: XMLDouble.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/util/XMLDouble.hpp,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- XMLDouble.hpp	23 Sep 2003 18:16:07 -0000	1.6
  +++ XMLDouble.hpp	1 Dec 2003 23:23:27 -0000	1.7
  @@ -57,6 +57,9 @@
   /*
    * $Id$
    * $Log$
  + * Revision 1.7  2003/12/01 23:23:27  neilg
  + * fix for bug 25118; thanks to Jeroen Witmond
  + *
    * Revision 1.6  2003/09/23 18:16:07  peiyongz
    * Inplementation for Serialization/Deserialization
    *
  @@ -124,6 +127,8 @@
   	 *
   	 * @param      strValue the <code>String</code> to be converted to an
   	 *                 <code>XMLDouble</code>.
  +         * @param manager    Pointer to the memory manager to be used to
  +         *                   allocate objects.
   	 * @exception  NumberFormatException  if the <code>String</code> does not
   	 *               contain a parsable XMLDouble.
   	 */
  
  
  
  1.7       +7 -2      xml-xerces/c/src/xercesc/util/XMLFloat.hpp
  
  Index: XMLFloat.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/util/XMLFloat.hpp,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- XMLFloat.hpp	23 Sep 2003 18:16:07 -0000	1.6
  +++ XMLFloat.hpp	1 Dec 2003 23:23:27 -0000	1.7
  @@ -57,6 +57,9 @@
   /*
    * $Id$
    * $Log$
  + * Revision 1.7  2003/12/01 23:23:27  neilg
  + * fix for bug 25118; thanks to Jeroen Witmond
  + *
    * Revision 1.6  2003/09/23 18:16:07  peiyongz
    * Inplementation for Serialization/Deserialization
    *
  @@ -119,6 +122,8 @@
   	 *
   	 * @param      strValue the <code>String</code> to be converted to an
   	 *                      <code>XMLFloat</code>.
  +         * @param manager    Pointer to the memory manager to be used to
  +         *                   allocate objects.
   	 * @exception  NumberFormatException  if the <code>String</code> does not
   	 *               contain a parsable XMLFloat.
   	 */
  
  
  
  1.5       +5 -1      xml-xerces/c/src/xercesc/util/XMLStringTokenizer.hpp
  
  Index: XMLStringTokenizer.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/util/XMLStringTokenizer.hpp,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- XMLStringTokenizer.hpp	16 May 2003 03:11:22 -0000	1.4
  +++ XMLStringTokenizer.hpp	1 Dec 2003 23:23:27 -0000	1.5
  @@ -95,6 +95,8 @@
         * characters themselves will not be treated as tokens.
         *
         * @param  srcStr  The string to be parsed.
  +      * @param  manager Pointer to the memory manager to be used to
  +      *                 allocate objects.
         *
         */
   	XMLStringTokenizer(const XMLCh* const srcStr,
  @@ -107,6 +109,8 @@
         *
         * @param  srcStr  The string to be parsed.
         * @param  delim   The set of delimiters.
  +      * @param  manager Pointer to the memory manager to be used to
  +      *                 allocate objects.
         */
       XMLStringTokenizer(const XMLCh* const srcStr
                          , const XMLCh* const delim
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: xerces-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: xerces-cvs-help@xml.apache.org