You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by tn...@apache.org on 2002/05/31 17:13:54 UTC

cvs commit: xml-xerces/c/src/xercesc/parsers DOMBuilderImpl.hpp SAX2XMLReaderImpl.hpp SAXParser.hpp XercesDOMParser.hpp

tng         2002/05/31 08:13:54

  Modified:    c/src/xercesc/parsers DOMBuilderImpl.hpp
                        SAX2XMLReaderImpl.hpp SAXParser.hpp
                        XercesDOMParser.hpp
  Log:
  Fix doxygen documentation.
  
  Revision  Changes    Path
  1.4       +6 -2      xml-xerces/c/src/xercesc/parsers/DOMBuilderImpl.hpp
  
  Index: DOMBuilderImpl.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/parsers/DOMBuilderImpl.hpp,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- DOMBuilderImpl.hpp	30 May 2002 19:26:45 -0000	1.3
  +++ DOMBuilderImpl.hpp	31 May 2002 15:13:53 -0000	1.4
  @@ -55,7 +55,7 @@
    */
   
   /*
  - * $Id: DOMBuilderImpl.hpp,v 1.3 2002/05/30 19:26:45 knoaman Exp $
  + * $Id: DOMBuilderImpl.hpp,v 1.4 2002/05/31 15:13:53 tng Exp $
    *
    */
   
  @@ -290,7 +290,7 @@
         * @return The current state of the feature (true or false)
         * @exception DOMException
         *     NOT_FOUND_ERR: Raised when the DOMBuilder does not recognize
  -      *     the feature name. 
  +      *     the feature name.
         *
         * @see #getFeature
         * @see #canSetFeature
  @@ -559,9 +559,13 @@
         *                 public id of the entity just parsed.
         * @param systemId A const pointer to a Unicode string representing the
         *                 system id of the entity just parsed.
  +      * @param baseURI  A const pointer to a Unicode string representing the
  +      *                 base URI of the entity just parsed,
  +      *                 or <code>null</code> if there is no base URI.
         * @return The value returned by the user installed resolveEntity
         *         method or NULL otherwise to indicate no processing was done.
         * @see DOMEntityResolver
  +      * @see XMLEntityHandler
         */
       virtual InputSource* resolveEntity
       (
  
  
  
  1.8       +7 -0      xml-xerces/c/src/xercesc/parsers/SAX2XMLReaderImpl.hpp
  
  Index: SAX2XMLReaderImpl.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/parsers/SAX2XMLReaderImpl.hpp,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- SAX2XMLReaderImpl.hpp	30 May 2002 16:39:06 -0000	1.7
  +++ SAX2XMLReaderImpl.hpp	31 May 2002 15:13:53 -0000	1.8
  @@ -56,6 +56,9 @@
   
   /*
    * $Log: SAX2XMLReaderImpl.hpp,v $
  + * Revision 1.8  2002/05/31 15:13:53  tng
  + * Fix doxygen documentation.
  + *
    * Revision 1.7  2002/05/30 16:39:06  knoaman
    * DOM L3 LS.
    *
  @@ -881,9 +884,13 @@
         *                 public id of the entity just parsed.
         * @param systemId A const pointer to a Unicode string representing the
         *                 system id of the entity just parsed.
  +      * @param baseURI  A const pointer to a Unicode string representing the
  +      *                 base URI of the entity just parsed,
  +      *                 or <code>null</code> if there is no base URI.
         * @return The value returned by the SAX resolveEntity method or
         *         NULL otherwise to indicate no processing was done.
         * @see EntityResolver
  +      * @see XMLEntityHandler
         */
       virtual InputSource* resolveEntity
       (
  
  
  
  1.8       +7 -0      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.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- SAXParser.hpp	30 May 2002 16:39:06 -0000	1.7
  +++ SAXParser.hpp	31 May 2002 15:13:53 -0000	1.8
  @@ -56,6 +56,9 @@
   
   /*
    * $Log: SAXParser.hpp,v $
  + * Revision 1.8  2002/05/31 15:13:53  tng
  + * Fix doxygen documentation.
  + *
    * Revision 1.7  2002/05/30 16:39:06  knoaman
    * DOM L3 LS.
    *
  @@ -1522,9 +1525,13 @@
         *                 public id of the entity just parsed.
         * @param systemId A const pointer to a Unicode string representing the
         *                 system id of the entity just parsed.
  +      * @param baseURI  A const pointer to a Unicode string representing the
  +      *                 base URI of the entity just parsed,
  +      *                 or <code>null</code> if there is no base URI.
         * @return The value returned by the SAX resolveEntity method or
         *         NULL otherwise to indicate no processing was done.
         * @see EntityResolver
  +      * @see XMLEntityHandler
         */
       virtual InputSource* resolveEntity
       (
  
  
  
  1.7       +6 -2      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.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- XercesDOMParser.hpp	30 May 2002 16:39:06 -0000	1.6
  +++ XercesDOMParser.hpp	31 May 2002 15:13:53 -0000	1.7
  @@ -55,7 +55,7 @@
    */
   
   /*
  - * $Id: XercesDOMParser.hpp,v 1.6 2002/05/30 16:39:06 knoaman Exp $
  + * $Id: XercesDOMParser.hpp,v 1.7 2002/05/31 15:13:53 tng Exp $
    *
    */
   
  @@ -312,9 +312,13 @@
         *                 public id of the entity just parsed.
         * @param systemId A const pointer to a Unicode string representing the
         *                 system id of the entity just parsed.
  +      * @param baseURI  A const pointer to a Unicode string representing the
  +      *                 base URI of the entity just parsed,
  +      *                 or <code>null</code> if there is no base URI.
         * @return The value returned by the user installed resolveEntity
         *         method or NULL otherwise to indicate no processing was done.
  -      * @see EntityResolver
  +      * @see DOMEntityResolver
  +      * @see XMLEntityHandler
         */
       virtual InputSource* resolveEntity
       (
  
  
  

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