amassari    2004/09/20 07:47:14

  Modified:    c/src/xercesc/validators/DTD DTDAttDef.hpp
                        DTDElementDecl.hpp
               c/src/xercesc/validators/schema SchemaAttDef.hpp
               c/src/xercesc/validators/datatype UnionDatatypeValidator.hpp
               c/src/xercesc/framework XMLAttr.hpp
  Log:
  Mark some methods as deprecated
  
  Revision  Changes    Path
  1.10      +9 -0      xml-xerces/c/src/xercesc/validators/DTD/DTDAttDef.hpp
  
  Index: DTDAttDef.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/validators/DTD/DTDAttDef.hpp,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- DTDAttDef.hpp     8 Sep 2004 13:56:50 -0000       1.9
  +++ DTDAttDef.hpp     20 Sep 2004 14:47:13 -0000      1.10
  @@ -16,6 +16,9 @@
   
   /*
    * $Log$
  + * Revision 1.10  2004/09/20 14:47:13  amassari
  + * Mark some methods as deprecated
  + *
    * Revision 1.9  2004/09/08 13:56:50  peiyongz
    * Apache License Version 2.0
    *
  @@ -112,8 +115,14 @@
       // -----------------------------------------------------------------------
       unsigned int getElemId() const;
   
  +    /**
  +     * @deprecated
  +    **/
       virtual const XMLCh* getDOMTypeInfoName() const;
   
  +    /**
  +     * @deprecated
  +    **/
       virtual const XMLCh* getDOMTypeInfoUri() const;
   
   
  
  
  
  1.11      +9 -0      xml-xerces/c/src/xercesc/validators/DTD/DTDElementDecl.hpp
  
  Index: DTDElementDecl.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/validators/DTD/DTDElementDecl.hpp,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- DTDElementDecl.hpp        8 Sep 2004 13:56:50 -0000       1.10
  +++ DTDElementDecl.hpp        20 Sep 2004 14:47:13 -0000      1.11
  @@ -16,6 +16,9 @@
   
   /*
    * $Log$
  + * Revision 1.11  2004/09/20 14:47:13  amassari
  + * Mark some methods as deprecated
  + *
    * Revision 1.10  2004/09/08 13:56:50  peiyongz
    * Apache License Version 2.0
    *
  @@ -192,8 +195,14 @@
       DTDAttDef* getAttDef(const XMLCh* const attName);
       ModelTypes getModelType() const;
   
  +    /**
  +     * @deprecated
  +    **/
       const XMLCh* getDOMTypeInfoName() const;
   
  +    /**
  +     * @deprecated
  +    **/
       const XMLCh* getDOMTypeInfoUri() const;
   
       // -----------------------------------------------------------------------
  
  
  
  1.14      +6 -0      xml-xerces/c/src/xercesc/validators/schema/SchemaAttDef.hpp
  
  Index: SchemaAttDef.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/validators/schema/SchemaAttDef.hpp,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- SchemaAttDef.hpp  8 Sep 2004 13:56:56 -0000       1.13
  +++ SchemaAttDef.hpp  20 Sep 2004 14:47:13 -0000      1.14
  @@ -16,6 +16,9 @@
   
   /*
    * $Log$
  + * Revision 1.14  2004/09/20 14:47:13  amassari
  + * Mark some methods as deprecated
  + *
    * Revision 1.13  2004/09/08 13:56:56  peiyongz
    * Apache License Version 2.0
    *
  @@ -253,6 +256,9 @@
          ,const int                 uriId = -1
       );
       void setDatatypeValidator(DatatypeValidator* newDatatypeValidator);
  +    /*
  +     * @deprecated
  +     */
       void setAnyDatatypeValidator(DatatypeValidator* newDatatypeValidator);
       void setBaseAttDecl(SchemaAttDef* const attDef);
       void setPSVIScope(const PSVIDefs::PSVIScope toSet);
  
  
  
  1.19      +8 -1      
xml-xerces/c/src/xercesc/validators/datatype/UnionDatatypeValidator.hpp
  
  Index: UnionDatatypeValidator.hpp
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/c/src/xercesc/validators/datatype/UnionDatatypeValidator.hpp,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- UnionDatatypeValidator.hpp        8 Sep 2004 13:56:54 -0000       1.18
  +++ UnionDatatypeValidator.hpp        20 Sep 2004 14:47:13 -0000      1.19
  @@ -17,6 +17,9 @@
   /*
    * $Id$
    * $Log$
  + * Revision 1.19  2004/09/20 14:47:13  amassari
  + * Mark some methods as deprecated
  + *
    * Revision 1.18  2004/09/08 13:56:54  peiyongz
    * Apache License Version 2.0
    *
  @@ -256,18 +259,21 @@
       /**
        * Returns the type name that was actually used to validate the last time 
validate was called
        * note - this does not mean that it fully validated sucessfully
  +     * @deprecated
        **/
       const XMLCh* getMemberTypeName() const;
   
       /**
        * Returns the type uri that was actually used to validate the last time 
validate was called
        * note - this does not mean that it fully validated sucessfully
  +     * @deprecated
        **/
       const XMLCh* getMemberTypeUri() const;
   
       /**
        * Returns true if the type that was actually used to validate the last time 
validate was called 
        * is anonymous
  +     * @deprecated
        */
       bool getMemberTypeAnonymous() const;
   
  @@ -275,6 +281,7 @@
       /**
        * Returns the member DatatypeValidator used to validate the content the last 
time validate 
        * was called
  +     * @deprecated
        */
       const DatatypeValidator* getMemberTypeValidator() const;
   
  
  
  
  1.11      +7 -0      xml-xerces/c/src/xercesc/framework/XMLAttr.hpp
  
  Index: XMLAttr.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/framework/XMLAttr.hpp,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- XMLAttr.hpp       8 Sep 2004 13:55:58 -0000       1.10
  +++ XMLAttr.hpp       20 Sep 2004 14:47:13 -0000      1.11
  @@ -16,6 +16,9 @@
   
   /*
    * $Log$
  + * Revision 1.11  2004/09/20 14:47:13  amassari
  + * Mark some methods as deprecated
  + *
    * Revision 1.10  2004/09/08 13:55:58  peiyongz
    * Apache License Version 2.0
    *
  @@ -281,11 +284,13 @@
   
       /**
        * @return the uri part of DOM Level 3 TypeInfo
  +     * @deprecated
        */
       const XMLCh* getValidatingTypeURI() const;
   
       /**
        * @return the name part of DOM Level 3 TypeInfo
  +     * @deprecated
        */
       const XMLCh* getValidatingTypeName() const;
   
  @@ -434,6 +439,7 @@
         * to assess the validity of the value of this attribute.
         * @param datatypeValidator        DatatypeValidator used to assess the 
validity
         *             of this attribute's value
  +      * @deprecated
         */
       void setDatatypeValidator(DatatypeValidator * datatypeValidator);
   
  @@ -442,6 +448,7 @@
         * validated by an XML Schema
         * @param isSchema     true indicates that this attribute was validated
         *         by an XML Schema; false indicates otherwise
  +      * @deprecated
         */
       void setSchemaValidated(const bool isSchema);
   
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to