You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by ab...@locus.apache.org on 2000/02/10 20:52:08 UTC

cvs commit: xml-xerces/c/src/dom DOM_DOMException.hpp

abagchi     00/02/10 11:52:08

  Modified:    c/src/dom DOM_DOMException.hpp
  Log:
  Added docs for enum
  
  Revision  Changes    Path
  1.5       +10 -4     xml-xerces/c/src/dom/DOM_DOMException.hpp
  
  Index: DOM_DOMException.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/dom/DOM_DOMException.hpp,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- DOM_DOMException.hpp	2000/02/06 07:47:28	1.4
  +++ DOM_DOMException.hpp	2000/02/10 19:52:08	1.5
  @@ -56,6 +56,9 @@
   
   /**
    * $Log: DOM_DOMException.hpp,v $
  + * Revision 1.5  2000/02/10 19:52:08  abagchi
  + * Added docs for enum
  + *
    * Revision 1.4  2000/02/06 07:47:28  rahulj
    * Year 2K copyright swat.
    *
  @@ -99,6 +102,8 @@
     */
   class CDOM_EXPORT DOM_DOMException  {
   public:
  +    /** @name Enumerators for DOM Exceptions */
  +    //@{
           enum ExceptionCode {
                   INDEX_SIZE_ERR       = 1,
                   DOMSTRING_SIZE_ERR   = 2,
  @@ -111,11 +116,12 @@
                   NOT_SUPPORTED_ERR    = 9,
                   INUSE_ATTRIBUTE_ERR  = 10,
                   INVALID_STATE_ERR    = 11,
  -	        	SYNTAX_ERR	     = 12,
  -        		INVALID_MODIFICATION_ERR    = 13,
  -        		NAMESPACE_ERR	     = 14,
  -        		INVALID_ACCESS_ERR   = 15
  +	       	SYNTAX_ERR	     = 12,
  +        	INVALID_MODIFICATION_ERR    = 13,
  +        	NAMESPACE_ERR	     = 14,
  +        	INVALID_ACCESS_ERR   = 15
           };
  +    //@}
   public:
       /** @name Constructors and assignment operator */
       //@{