You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by pe...@apache.org on 2001/11/15 17:08:16 UTC

cvs commit: xml-xerces/c/src/validators/datatype ListDatatypeValidator.hpp AbstractStringValidator.hpp

peiyongz    01/11/15 08:08:16

  Modified:    c/src/validators/datatype ListDatatypeValidator.hpp
                        AbstractStringValidator.hpp
  Log:
  checkContent() made virtual to allow ListDTV participate in the building of
  its own (in AbstractStringValidator's init())
  
  Revision  Changes    Path
  1.10      +6 -3      xml-xerces/c/src/validators/datatype/ListDatatypeValidator.hpp
  
  Index: ListDatatypeValidator.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/validators/datatype/ListDatatypeValidator.hpp,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- ListDatatypeValidator.hpp	2001/10/11 19:32:27	1.9
  +++ ListDatatypeValidator.hpp	2001/11/15 16:08:15	1.10
  @@ -55,8 +55,12 @@
    */
   
   /*
  - * $Id: ListDatatypeValidator.hpp,v 1.9 2001/10/11 19:32:27 peiyongz Exp $
  + * $Id: ListDatatypeValidator.hpp,v 1.10 2001/11/15 16:08:15 peiyongz Exp $
    * $Log: ListDatatypeValidator.hpp,v $
  + * Revision 1.10  2001/11/15 16:08:15  peiyongz
  + * checkContent() made virtual to allow ListDTV participate in the building of
  + * its own (in AbstractStringValidator's init())
  + *
    * Revision 1.9  2001/10/11 19:32:27  peiyongz
    * To overwrite inheritFacet()
    *
  @@ -191,9 +195,9 @@
   
       virtual void inheritFacet();
   
  -private:
  -
       void checkContent(const XMLCh* const content, bool asBase);
  +
  +private:
   
       void checkContent(RefVectorOf<XMLCh>* tokenVector, bool asBase);
   
  
  
  
  1.7       +6 -3      xml-xerces/c/src/validators/datatype/AbstractStringValidator.hpp
  
  Index: AbstractStringValidator.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/validators/datatype/AbstractStringValidator.hpp,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- AbstractStringValidator.hpp	2001/10/11 19:32:12	1.6
  +++ AbstractStringValidator.hpp	2001/11/15 16:08:15	1.7
  @@ -55,8 +55,12 @@
    */
   
   /*
  - * $Id: AbstractStringValidator.hpp,v 1.6 2001/10/11 19:32:12 peiyongz Exp $
  + * $Id: AbstractStringValidator.hpp,v 1.7 2001/11/15 16:08:15 peiyongz Exp $
    * $Log: AbstractStringValidator.hpp,v $
  + * Revision 1.7  2001/11/15 16:08:15  peiyongz
  + * checkContent() made virtual to allow ListDTV participate in the building of
  + * its own (in AbstractStringValidator's init())
  + *
    * Revision 1.6  2001/10/11 19:32:12  peiyongz
    * Allow derived to overwrite inheritFacet()
    *
  @@ -164,6 +168,8 @@
   
       virtual void inheritFacet();
   
  +    virtual void checkContent(const XMLCh* const content, bool asBase);
  +
   // -----------------------------------------------------------------------
   // Getter methods
   // -----------------------------------------------------------------------
  @@ -189,8 +195,6 @@
       inline void                 setEnumeration(RefVectorOf<XMLCh>*, bool);
   
   private:
  -
  -    void checkContent(const XMLCh* const content, bool asBase);
   
       void assignFacet();
   
  
  
  

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