From 6bcbcf5ec872bbb698cb2a87afb73c2d70e53125 Mon Sep 17 00:00:00 2001
From: Tinny Ng <tng@apache.org>
Date: Fri, 7 Jun 2002 15:38:41 +0000
Subject: [PATCH] Documentation Fix: Update the API Documentation for DOM
 headers

git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@173807 13f79535-47bb-0310-9956-ffa450edef68
---
 src/xercesc/dom/DOMInputSource.hpp | 68 +++++++++++++++++-------------
 1 file changed, 38 insertions(+), 30 deletions(-)

diff --git a/src/xercesc/dom/DOMInputSource.hpp b/src/xercesc/dom/DOMInputSource.hpp
index 5258b0880..b9d373bbc 100644
--- a/src/xercesc/dom/DOMInputSource.hpp
+++ b/src/xercesc/dom/DOMInputSource.hpp
@@ -59,6 +59,9 @@
 
 /*
  * $Log$
+ * Revision 1.4  2002/06/07 15:38:41  tng
+ * Documentation Fix: Update the API Documentation for DOM headers
+ *
  * Revision 1.3  2002/06/06 20:53:06  tng
  * Documentation Fix: Update the API Documentation for DOM headers
  *
@@ -133,21 +136,6 @@ public:
     // -----------------------------------------------------------------------
     /** @name Functions introduced in DOM Level 3 */
     //@{
-    /**
-     * Makes the byte stream for this input source.
-     *
-     * <p>The derived class must create and return a binary input stream of an
-     * appropriate type for its kind of data source. The returned stream must
-     * be dynamically allocated and becomes the parser's property.
-     * </p>
-     *
-     * <p><b>"Experimental - subject to change"</b></p>
-     *
-     * @see BinInputStream
-     * @since DOM Level 3
-     */
-    virtual BinInputStream* makeStream() const = 0;
-
     // -----------------------------------------------------------------------
     //  Getter methods
     // -----------------------------------------------------------------------
@@ -205,20 +193,6 @@ public:
      */
     virtual const XMLCh* getBaseURI() const = 0;
 
-
-    /**
-     * Get the flag that indicates if the parser should issue fatal error if this input source
-     * is not found.
-     *
-     * <p><b>"Experimental - subject to change"</b></p>
-     *
-     * @return True if the parser should issue fatal error if this input source is not found.
-     *         False if the parser issue warning message instead.
-     * @see #setIssueFatalErrorIfNotFound
-     * @since DOM Level 3
-     */
-    virtual const bool getIssueFatalErrorIfNotFound() const = 0;
-
     // -----------------------------------------------------------------------
     //  Setter methods
     // -----------------------------------------------------------------------
@@ -282,6 +256,28 @@ public:
      * @since DOM Level 3
      */
     virtual void setBaseURI(const XMLCh* const baseURI) = 0;
+    //@}
+
+    // -----------------------------------------------------------------------
+    //  Non-standard Extension
+    // -----------------------------------------------------------------------
+    /** @name Non-standard Extension */
+    //@{
+
+    /**
+     * Makes the byte stream for this input source.
+     *
+     * <p>The derived class must create and return a binary input stream of an
+     * appropriate type for its kind of data source. The returned stream must
+     * be dynamically allocated and becomes the parser's property.
+     * </p>
+     *
+     * <p><b>"Experimental - subject to change"</b></p>
+     *
+     * @see BinInputStream
+     * @since DOM Level 3
+     */
+    virtual BinInputStream* makeStream() const = 0;
 
     /**
      * Indicates if the parser should issue fatal error if this input source
@@ -293,10 +289,22 @@ public:
      *               If set to false, the parser issue warning message instead.  (Default: true)
      *
      * @see #getIssueFatalErrorIfNotFound
-     * @since DOM Level 3
      */
     virtual void setIssueFatalErrorIfNotFound(const bool flag) = 0;
 
+
+    /**
+     * Get the flag that indicates if the parser should issue fatal error if this input source
+     * is not found.
+     *
+     * <p><b>"Experimental - subject to change"</b></p>
+     *
+     * @return True if the parser should issue fatal error if this input source is not found.
+     *         False if the parser issue warning message instead.
+     * @see #setIssueFatalErrorIfNotFound
+     */
+    virtual const bool getIssueFatalErrorIfNotFound() const = 0;
+
     //@}
 };
 
-- 
GitLab