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 2001/01/12 22:23:47 UTC

cvs commit: xml-xerces/c/src/parsers DOMParser.hpp SAXParser.hpp

tng         01/01/12 13:23:47

  Modified:    c/src/parsers DOMParser.hpp SAXParser.hpp
  Log:
  Documentation Enhancement: explain values of Val_Scheme
  
  Revision  Changes    Path
  1.14      +9 -3      xml-xerces/c/src/parsers/DOMParser.hpp
  
  Index: DOMParser.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/parsers/DOMParser.hpp,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- DOMParser.hpp	2000/09/12 23:05:30	1.13
  +++ DOMParser.hpp	2001/01/12 21:23:38	1.14
  @@ -55,7 +55,7 @@
    */
   
   /*
  - * $Id: DOMParser.hpp,v 1.13 2000/09/12 23:05:30 aruna1 Exp $
  + * $Id: DOMParser.hpp,v 1.14 2001/01/12 21:23:38 tng Exp $
    *
    */
   
  @@ -219,6 +219,7 @@
         * validation scheme set on this parser.
         *
         * @return The ValSchemes value current set on this parser.
  +      * @see #setValidationScheme
         */
       ValSchemes getValidationScheme() const;
   
  @@ -441,11 +442,16 @@
       /**
         * This method allows users to set the validation scheme to be used
         * by this parser. The value is one of the ValSchemes enumerated values
  -      * defined by this class.
  +      * defined by this class:
         *
  +      * <br>  Val_Never  - turn off validation
  +      * <br>  Val_Always - turn on validation
  +      * <br>  Val_Auto   - turn on validation if any internal/external
  +      *                  DTD subset have been seen
  +      *
         * <p>The parser's default state is: Val_Auto.</p>
         *
  -      * @param newState The new validation scheme to use.
  +      * @param newScheme The new validation scheme to use.
         *
         * @see #getValidationScheme
         */
  
  
  
  1.10      +12 -2     xml-xerces/c/src/parsers/SAXParser.hpp
  
  Index: SAXParser.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/parsers/SAXParser.hpp,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- SAXParser.hpp	2000/08/02 18:05:15	1.9
  +++ SAXParser.hpp	2001/01/12 21:23:41	1.10
  @@ -56,6 +56,9 @@
   
   /*
    * $Log: SAXParser.hpp,v $
  + * Revision 1.10  2001/01/12 21:23:41  tng
  + * Documentation Enhancement: explain values of Val_Scheme
  + *
    * Revision 1.9  2000/08/02 18:05:15  jpolast
    * changes required for sax2
    * (changed private members to protected)
  @@ -233,6 +236,7 @@
         * validation scheme set on this parser.
         *
         * @return The ValSchemes value current set on this parser.
  +      * @see #setValidationScheme
         */
       ValSchemes getValidationScheme() const;
   
  @@ -288,11 +292,16 @@
       /**
         * This method allows users to set the validation scheme to be used
         * by this parser. The value is one of the ValSchemes enumerated values
  -      * defined by this class.
  +      * defined by this class:
  +      *
  +      * <br>  Val_Never  - turn off validation
  +      * <br>  Val_Always - turn on validation
  +      * <br>  Val_Auto   - turn on validation if any internal/external
  +      *                  DTD subset have been seen
         *
         * <p>The parser's default state is: Val_Auto.</p>
         *
  -      * @param newState The new validation scheme to use.
  +      * @param newScheme The new validation scheme to use.
         *
         * @see #getValidationScheme
         */