You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by mc...@apache.org on 2005/01/24 01:34:36 UTC

cvs commit: xml-xalan/java/src/org/apache/xml/dtm/ref/sax2dtm SAX2DTM.java SAX2DTM2.java SAX2RTFDTM.java

mcnamara    2005/01/23 16:34:36

  Modified:    java/src/org/apache/xalan/serialize SerializerUtils.java
               java/src/org/apache/xml/dtm/ref ExpandedNameTable.java
                        DTMTreeWalker.java DTMNodeListBase.java
                        DTMNodeList.java DTMNamedNodeMap.java
                        DTMDocumentImpl.java DTMDefaultBaseTraversers.java
                        DTMDefaultBaseIterators.java DTMDefaultBase.java
                        DTMChildIterNodeList.java DTMAxisIterNodeList.java
                        CoroutineManager.java
               java/src/org/apache/xml/dtm/ref/dom2dtm DOM2DTM.java
               java/src/org/apache/xml/dtm/ref/sax2dtm SAX2DTM.java
                        SAX2DTM2.java SAX2RTFDTM.java
  Log:
  Clean up javadoc to reduce warnings during doc builds.  See XALANJ-2048
  
  Revision  Changes    Path
  1.5       +1 -4      xml-xalan/java/src/org/apache/xalan/serialize/SerializerUtils.java
  
  Index: SerializerUtils.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xalan/serialize/SerializerUtils.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- SerializerUtils.java	20 Jan 2005 16:59:34 -0000	1.4
  +++ SerializerUtils.java	24 Jan 2005 00:34:35 -0000	1.5
  @@ -238,9 +238,6 @@
        * If it's not, it still needs to be declared at this point.
        * TODO: This needs to be done at an earlier stage in the game... -sb
        *
  -     * @param ns Namespace URI of the element
  -     * @param rawName Raw name of element (with prefix)
  -     *
        * NEEDSDOC @param dtm
        * NEEDSDOC @param namespace
        *
  
  
  
  1.14      +1 -4      xml-xalan/java/src/org/apache/xml/dtm/ref/ExpandedNameTable.java
  
  Index: ExpandedNameTable.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xml/dtm/ref/ExpandedNameTable.java,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- ExpandedNameTable.java	16 Feb 2004 23:06:11 -0000	1.13
  +++ ExpandedNameTable.java	24 Jan 2005 00:34:35 -0000	1.14
  @@ -271,9 +271,6 @@
      * Given a type, return an expanded name ID.Any additional nodes that are
      * created that have this expanded name will use this ID.
      *
  -   * @param namespace
  -   * @param localName
  -   *
      * @return the expanded-name id of the node.
      */
     public int getExpandedTypeID(int type)
  
  
  
  1.7       +1 -3      xml-xalan/java/src/org/apache/xml/dtm/ref/DTMTreeWalker.java
  
  Index: DTMTreeWalker.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xml/dtm/ref/DTMTreeWalker.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- DTMTreeWalker.java	16 Feb 2004 23:06:11 -0000	1.6
  +++ DTMTreeWalker.java	24 Jan 2005 00:34:35 -0000	1.7
  @@ -76,8 +76,6 @@
     
     /**
      * Constructor.
  -   * @param   contentHandler The implemention of the
  -   * contentHandler operation (toXMLString, digest, ...)
      */
     public DTMTreeWalker()
     {
  
  
  
  1.4       +2 -2      xml-xalan/java/src/org/apache/xml/dtm/ref/DTMNodeListBase.java
  
  Index: DTMNodeListBase.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xml/dtm/ref/DTMNodeListBase.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- DTMNodeListBase.java	16 Feb 2004 23:06:11 -0000	1.3
  +++ DTMNodeListBase.java	24 Jan 2005 00:34:35 -0000	1.4
  @@ -60,7 +60,7 @@
        * Returns the <code>index</code>th item in the collection. If 
        * <code>index</code> is greater than or equal to the number of nodes in 
        * the list, this returns <code>null</code>.
  -     * @param indexIndex into the collection.
  +     * @param index Index into the collection.
        * @return The node at the <code>index</code>th position in the 
        *   <code>NodeList</code>, or <code>null</code> if that is not a valid 
        *   index.
  
  
  
  1.12      +2 -2      xml-xalan/java/src/org/apache/xml/dtm/ref/DTMNodeList.java
  
  Index: DTMNodeList.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xml/dtm/ref/DTMNodeList.java,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- DTMNodeList.java	16 Feb 2004 23:06:11 -0000	1.11
  +++ DTMNodeList.java	24 Jan 2005 00:34:35 -0000	1.12
  @@ -97,7 +97,7 @@
        * Returns the <code>index</code>th item in the collection. If 
        * <code>index</code> is greater than or equal to the number of nodes in 
        * the list, this returns <code>null</code>.
  -     * @param indexIndex into the collection.
  +     * @param index Index into the collection.
        * @return The node at the <code>index</code>th position in the 
        *   <code>NodeList</code>, or <code>null</code> if that is not a valid 
        *   index.
  
  
  
  1.11      +2 -6      xml-xalan/java/src/org/apache/xml/dtm/ref/DTMNamedNodeMap.java
  
  Index: DTMNamedNodeMap.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xml/dtm/ref/DTMNamedNodeMap.java,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- DTMNamedNodeMap.java	22 Dec 2004 20:55:43 -0000	1.10
  +++ DTMNamedNodeMap.java	24 Jan 2005 00:34:35 -0000	1.11
  @@ -89,9 +89,7 @@
   
     /**
      * Retrieves a node specified by name.
  -   * @param nameThe <code>nodeName</code> of a node to retrieve.
  -   *
  -   * @param name Name of the item being requested.
  +   * @param name The <code>nodeName</code> of a node to retrieve.
      * @return A <code>Node</code> (of any type) with the specified
      *   <code>nodeName</code>, or <code>null</code> if it does not identify
      *   any node in this map.
  @@ -113,8 +111,6 @@
      * Returns the <code>index</code>th item in the map. If <code>index</code>
      * is greater than or equal to the number of nodes in this map, this
      * returns <code>null</code>.
  -   * @param indexIndex into this map.
  -   *
      * @param i The index of the requested item.
      * @return The node at the <code>index</code>th position in the map, or
      *   <code>null</code> if that is not a valid index.
  
  
  
  1.15      +8 -18     xml-xalan/java/src/org/apache/xml/dtm/ref/DTMDocumentImpl.java
  
  Index: DTMDocumentImpl.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xml/dtm/ref/DTMDocumentImpl.java,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- DTMDocumentImpl.java	15 Dec 2004 17:35:48 -0000	1.14
  +++ DTMDocumentImpl.java	24 Jan 2005 00:34:35 -0000	1.15
  @@ -291,7 +291,7 @@
            /**
             * Set a reference pointer to the content-text repository
             *
  -          * @param bufferRef FastStringBuffer reference to an instance of
  +          * @param buffer FastStringBuffer reference to an instance of
             * buffer
             */
            void setContentBuffer(FastStringBuffer buffer) {
  @@ -615,7 +615,7 @@
            *
            * The DTMManager will invoke this method when the dtm is created.
            *
  -         * @param docHandle int the handle for the DTM document.
  +         * @param documentNumber the handle for the DTM document.
            */
           final void initDocument(int documentNumber)
           {
  @@ -787,7 +787,6 @@
   // 	 * coordinated access to the DTMDStringPool based symbol tables.</p>
   // 		 *
   // 	 * @param ns the namespace of the element
  -// 	 * @param localName The local part of the qualified name of the element
   // 	 * @param name The element name
   // 	 */
   // 	public void endElement(String ns, String name)
  @@ -1257,7 +1256,7 @@
            * If not yet resolved, waits for more nodes to be added to the document and
            * tries again.
            *
  -         * @param subtreeRootNodeHandle
  +         * @param subtreeRootHandle
            * @param nodeHandle int Handle of the node.
            * @return handle of next descendant,
            * or DTM.NULL to indicate none exists.
  @@ -1364,7 +1363,6 @@
           /**
                   * Given a node handle, find the owning document node.
                   *
  -                * @param nodeHandle the id of the node.
                   * @return int Node handle of document, which should always be valid.
                   */
           public int getDocument() {
  @@ -1530,8 +1528,6 @@
            * be returned.  Any additional nodes that are created that have this
            * expanded name will use this ID.
            *
  -         * @param nodeHandle The handle to the node in question.
  -         *
            * @return the expanded-name id of the node.
            */
           public int getExpandedTypeID(String namespace, String localName, int type) {
  @@ -1757,7 +1753,7 @@
            * that feature is supported by this node.
            *
            * @param feature The name of the feature to test.
  -         * @param versionThis is the version number of the feature to test.
  +         * @param version This is the version number of the feature to test.
            *   If the version is not
            *   specified, supporting any version of the feature will cause the
            *   method to return <code>true</code>.
  @@ -1826,7 +1822,7 @@
            * beginning of the document entity, and has no value if there is no XML
            * declaration.
            *
  -         * @param the document handle
  +         * @param documentHandle the document handle
            *
            * @return the document version String object
            */
  @@ -1860,8 +1856,6 @@
            * no external subset or if it has no public identifier, this property
            * has no value.
            *
  -         * @param the document type declaration handle
  -         *
            * @return the public identifier String object, or null if there is none.
            */
           public String getDocumentTypeDeclarationPublicIdentifier() {return null;}
  @@ -1944,8 +1938,8 @@
            *
            * TODO: Make sure this does the right thing with attribute nodes!!!
            *
  -         * @param node1 DOM Node to perform position comparison on.
  -         * @param node2 DOM Node to perform position comparison on .
  +         * @param nodeHandle1 DOM Node to perform position comparison on.
  +         * @param nodeHandle2 DOM Node to perform position comparison on .
            *
            * @return false if node2 comes before node1, otherwise return true.
            * You can think of this as
  @@ -1979,8 +1973,6 @@
            *        descriptions below) may be unknown. If it is true, those properties
            *        are never unknown.
            *
  -         * @param the document handle
  -         *
            * @param documentHandle A node handle that must identify a document.
            * @return <code>true</code> if all declarations were processed;
            *         <code>false</code> otherwise.
  @@ -1993,8 +1985,6 @@
            *        DTD.
            *
            * @param the attribute handle
  -         *
  -         * NEEDSDOC @param attributeHandle
            * @return <code>true</code> if the attribute was specified;
            *         <code>false</code> if it was defaulted.
            */
  
  
  
  1.21      +1 -3      xml-xalan/java/src/org/apache/xml/dtm/ref/DTMDefaultBaseTraversers.java
  
  Index: DTMDefaultBaseTraversers.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xml/dtm/ref/DTMDefaultBaseTraversers.java,v
  retrieving revision 1.20
  retrieving revision 1.21
  diff -u -r1.20 -r1.21
  --- DTMDefaultBaseTraversers.java	15 Dec 2004 17:35:48 -0000	1.20
  +++ DTMDefaultBaseTraversers.java	24 Jan 2005 00:34:35 -0000	1.21
  @@ -43,7 +43,6 @@
      * Construct a DTMDefaultBaseTraversers object from a DOM node.
      *
      * @param mgr The DTMManager who owns this DTM.
  -   * @param domSource the DOM source that this DTM will wrap.
      * @param source The object that is used to specify the construction source.
      * @param dtmIdentity The DTM identity ID for this DTM.
      * @param whiteSpaceFilter The white space filter for this DTM, which may
  @@ -66,7 +65,6 @@
      * Construct a DTMDefaultBaseTraversers object from a DOM node.
      *
      * @param mgr The DTMManager who owns this DTM.
  -   * @param domSource the DOM source that this DTM will wrap.
      * @param source The object that is used to specify the construction source.
      * @param dtmIdentity The DTM identity ID for this DTM.
      * @param whiteSpaceFilter The white space filter for this DTM, which may
  
  
  
  1.23      +1 -3      xml-xalan/java/src/org/apache/xml/dtm/ref/DTMDefaultBaseIterators.java
  
  Index: DTMDefaultBaseIterators.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xml/dtm/ref/DTMDefaultBaseIterators.java,v
  retrieving revision 1.22
  retrieving revision 1.23
  diff -u -r1.22 -r1.23
  --- DTMDefaultBaseIterators.java	15 Dec 2004 17:35:48 -0000	1.22
  +++ DTMDefaultBaseIterators.java	24 Jan 2005 00:34:35 -0000	1.23
  @@ -38,7 +38,6 @@
      * Construct a DTMDefaultBaseTraversers object from a DOM node.
      *
      * @param mgr The DTMManager who owns this DTM.
  -   * @param domSource the DOM source that this DTM will wrap.
      * @param source The object that is used to specify the construction source.
      * @param dtmIdentity The DTM identity ID for this DTM.
      * @param whiteSpaceFilter The white space filter for this DTM, which may
  @@ -61,7 +60,6 @@
      * Construct a DTMDefaultBaseTraversers object from a DOM node.
      *
      * @param mgr The DTMManager who owns this DTM.
  -   * @param domSource the DOM source that this DTM will wrap.
      * @param source The object that is used to specify the construction source.
      * @param dtmIdentity The DTM identity ID for this DTM.
      * @param whiteSpaceFilter The white space filter for this DTM, which may
  
  
  
  1.41      +6 -17     xml-xalan/java/src/org/apache/xml/dtm/ref/DTMDefaultBase.java
  
  Index: DTMDefaultBase.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xml/dtm/ref/DTMDefaultBase.java,v
  retrieving revision 1.40
  retrieving revision 1.41
  diff -u -r1.40 -r1.41
  --- DTMDefaultBase.java	15 Dec 2004 17:35:48 -0000	1.40
  +++ DTMDefaultBase.java	24 Jan 2005 00:34:35 -0000	1.41
  @@ -154,7 +154,6 @@
      * Construct a DTMDefaultBase object using the default block size.
      *
      * @param mgr The DTMManager who owns this DTM.
  -   * @param domSource the DOM source that this DTM will wrap.
      * @param source The object that is used to specify the construction source.
      * @param dtmIdentity The DTM identity ID for this DTM.
      * @param whiteSpaceFilter The white space filter for this DTM, which may
  @@ -175,7 +174,6 @@
      * Construct a DTMDefaultBase object from a DOM node.
      *
      * @param mgr The DTMManager who owns this DTM.
  -   * @param domSource the DOM source that this DTM will wrap.
      * @param source The object that is used to specify the construction source.
      * @param dtmIdentity The DTM identity ID for this DTM.
      * @param whiteSpaceFilter The white space filter for this DTM, which may
  @@ -923,7 +921,7 @@
      *
      * %REVIEW% Should this be exposed at the package/public layers?
      * 
  -   * @param NodeHandle (external representation of node)
  +   * @param nodeHandle (external representation of node)
      * @return nodeIdentity Internal offset to this node's records.
      * */
     final public int makeNodeIdentity(int nodeHandle)
  @@ -1505,8 +1503,6 @@
      *
      * @param baseHandle handle to original node from where the first namespace
      * was relative to (needed to return nodes in document order).
  -   * @param namespaceHandle handle to node which must be of type
  -   * NAMESPACE_NODE.
      * @param nodeHandle A namespace handle for which we will find the next node.
      * @param inScope true if all namespaces that are in scope should be processed,
      * otherwise just process the nodes in the given element handle.
  @@ -1576,7 +1572,6 @@
      * this version of the operation is primarily intended for use during negotiation
      * with the DTM Manager.
      * 
  -   *  @param nodeHandle the id of the node.
      *  @return int Node handle of document, which should always be valid.
      */
     public int getDocument()
  @@ -1696,7 +1691,6 @@
      * be returned.  Any additional nodes that are created that have this
      * expanded name will use this ID.
      *
  -   * @param nodeHandle The handle to the node in question.
      * @param type The simple type, i.e. one of ELEMENT, ATTRIBUTE, etc.
      *
      * @param namespace The namespace URI, which may be null, may be an empty
  @@ -1718,7 +1712,7 @@
     /**
      * Given an expanded-name ID, return the local name part.
      *
  -   * @param ExpandedNameID an ID that represents an expanded-name.
  +   * @param expandedNameID an ID that represents an expanded-name.
      * @return String Local name of this node.
      */
     public String getLocalNameFromExpandedNameID(int expandedNameID)
  @@ -1729,7 +1723,7 @@
     /**
      * Given an expanded-name ID, return the namespace URI part.
      *
  -   * @param ExpandedNameID an ID that represents an expanded-name.
  +   * @param expandedNameID an ID that represents an expanded-name.
      * @return String URI value of this node's namespace, or null if no
      * namespace was resolved.
      */
  @@ -1900,11 +1894,10 @@
      * that feature is supported by this node.
      *
      * @param feature The name of the feature to test.
  -   * @param versionThis is the version number of the feature to test.
  +   * @param version This is the version number of the feature to test.
      *   If the version is not
      *   specified, supporting any version of the feature will cause the
      *   method to return <code>true</code>.
  -   * @param version The version string of the feature requested, may be null.
      * @return Returns <code>true</code> if the specified feature is
      *   supported on this node, <code>false</code> otherwise.
      */
  @@ -2029,8 +2022,6 @@
      * no external subset or if it has no public identifier, this property
      * has no value.
      *
  -   * @param the document type declaration handle
  -   *
      * @return the public identifier String object, or null if there is none.
      */
     public abstract String getDocumentTypeDeclarationPublicIdentifier();
  @@ -2159,8 +2150,6 @@
      *        descriptions below) may be unknown. If it is true, those properties
      *        are never unknown.
      *
  -   * @param the document handle
  -   *
      * @param documentHandle A node handle that must identify a document.
      * @return <code>true</code> if all declarations were processed;
      *         <code>false</code> otherwise.
  @@ -2348,7 +2337,7 @@
       * After the migration, the new DTMManager will treat the DTM as
       * one that is built by itself.
       * This is used to support DTM sharing between multiple transformations.
  -    * @param manager the DTMManager
  +    * @param mgr the DTMManager
       */
      public void migrateTo(DTMManager mgr)
      {
  
  
  
  1.4       +2 -2      xml-xalan/java/src/org/apache/xml/dtm/ref/DTMChildIterNodeList.java
  
  Index: DTMChildIterNodeList.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xml/dtm/ref/DTMChildIterNodeList.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- DTMChildIterNodeList.java	16 Feb 2004 23:06:11 -0000	1.3
  +++ DTMChildIterNodeList.java	24 Jan 2005 00:34:35 -0000	1.4
  @@ -85,7 +85,7 @@
        * Returns the <code>index</code>th item in the collection. If 
        * <code>index</code> is greater than or equal to the number of nodes in 
        * the list, this returns <code>null</code>.
  -     * @param indexIndex into the collection.
  +     * @param index Index into the collection.
        * @return The node at the <code>index</code>th position in the 
        *   <code>NodeList</code>, or <code>null</code> if that is not a valid 
        *   index.
  
  
  
  1.4       +2 -2      xml-xalan/java/src/org/apache/xml/dtm/ref/DTMAxisIterNodeList.java
  
  Index: DTMAxisIterNodeList.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xml/dtm/ref/DTMAxisIterNodeList.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- DTMAxisIterNodeList.java	16 Feb 2004 23:06:11 -0000	1.3
  +++ DTMAxisIterNodeList.java	24 Jan 2005 00:34:35 -0000	1.4
  @@ -94,7 +94,7 @@
        * Returns the <code>index</code>th item in the collection. If 
        * <code>index</code> is greater than or equal to the number of nodes in 
        * the list, this returns <code>null</code>.
  -     * @param indexIndex into the collection.
  +     * @param index Index into the collection.
        * @return The node at the <code>index</code>th position in the 
        *   <code>NodeList</code>, or <code>null</code> if that is not a valid 
        *   index.
  
  
  
  1.11      +5 -5      xml-xalan/java/src/org/apache/xml/dtm/ref/CoroutineManager.java
  
  Index: CoroutineManager.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xml/dtm/ref/CoroutineManager.java,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- CoroutineManager.java	16 Feb 2004 23:06:11 -0000	1.10
  +++ CoroutineManager.java	24 Jan 2005 00:34:35 -0000	1.11
  @@ -171,7 +171,7 @@
      * it's a net gain, though it would allow the thread to be its own
      * ID. Ponder.</p>
      *
  -   * @param coroutineID: If >=0, requests that we reserve this number.
  +   * @param coroutineID  If >=0, requests that we reserve this number.
      * If <0, requests that we find, reserve, and return an available ID
      * number.
      *
  @@ -251,7 +251,7 @@
      * @param arg_object A value to be passed to the other coroutine.
      * @param thisCoroutine Integer identifier for this coroutine. This is the
      * ID we watch for to see if we're the ones being resumed.
  -   * @param toCoroutine. Integer identifier for the coroutine we wish to
  +   * @param toCoroutine  Integer identifier for the coroutine we wish to
      * invoke. 
      * @exception java.lang.NoSuchMethodException if toCoroutine isn't a
      * registered member of this group. %REVIEW% whether this is the best choice.
  @@ -318,9 +318,9 @@
      * returns immediately rather than waiting for any further coroutine
      * traffic, so the thread can proceed with other shutdown activities.
      *
  -   * @param arg_object A value to be passed to the other coroutine.
  +   * @param arg_object    A value to be passed to the other coroutine.
      * @param thisCoroutine Integer identifier for the coroutine leaving the set.
  -   * @param toCoroutine. Integer identifier for the coroutine we wish to
  +   * @param toCoroutine   Integer identifier for the coroutine we wish to
      * invoke. 
      * @exception java.lang.NoSuchMethodException if toCoroutine isn't a
      * registered member of this group. %REVIEW% whether this is the best choice.
  
  
  
  1.35      +2 -8      xml-xalan/java/src/org/apache/xml/dtm/ref/dom2dtm/DOM2DTM.java
  
  Index: DOM2DTM.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xml/dtm/ref/dom2dtm/DOM2DTM.java,v
  retrieving revision 1.34
  retrieving revision 1.35
  diff -u -r1.34 -r1.35
  --- DOM2DTM.java	16 Feb 2004 23:06:53 -0000	1.34
  +++ DOM2DTM.java	24 Jan 2005 00:34:36 -0000	1.35
  @@ -1297,8 +1297,6 @@
      * no external subset or if it has no public identifier, this property
      * has no value.
      *
  -   * @param the document type declaration handle
  -   *
      * @return the public identifier String object, or null if there is none.
      */
     public String getDocumentTypeDeclarationPublicIdentifier()
  @@ -1465,9 +1463,7 @@
      *        specified in the start-tag of its element, or was defaulted from the
      *        DTD.
      *
  -   * @param the attribute handle
  -   *
  -   * NEEDSDOC @param attributeHandle
  +   * @param attributeHandle the attribute handle
      * @return <code>true</code> if the attribute was specified;
      *         <code>false</code> if it was defaulted.
      */
  @@ -1652,8 +1648,6 @@
      *
      * @param node Node whose subtree is to be walked, gathering the
      * contents of all Text or CDATASection nodes.
  -   * @param buf FastStringBuffer into which the contents of the text
  -   * nodes are to be concatenated.
      */
     protected static void dispatchNodeData(Node node, 
                                            org.xml.sax.ContentHandler ch, 
  
  
  
  1.38      +1 -14     xml-xalan/java/src/org/apache/xml/dtm/ref/sax2dtm/SAX2DTM.java
  
  Index: SAX2DTM.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xml/dtm/ref/sax2dtm/SAX2DTM.java,v
  retrieving revision 1.37
  retrieving revision 1.38
  diff -u -r1.37 -r1.38
  --- SAX2DTM.java	15 Dec 2004 17:35:49 -0000	1.37
  +++ SAX2DTM.java	24 Jan 2005 00:34:36 -0000	1.38
  @@ -362,7 +362,6 @@
      *
      * @param incrementalSAXSource The parser that we want to recieve events from
      * on demand.
  -   * @param appCoRID The CoRoutine ID for the application.
      */
     public void setIncrementalSAXSource(IncrementalSAXSource incrementalSAXSource)
     {
  @@ -670,8 +669,6 @@
      *        specified in the start-tag of its element, or was defaulted from the
      *        DTD.
      *
  -   * @param the attribute handle
  -   *
      * @param attributeHandle Must be a valid handle to an attribute node.
      * @return <code>true</code> if the attribute was specified;
      *         <code>false</code> if it was defaulted.
  @@ -1209,8 +1206,6 @@
      * no external subset or if it has no public identifier, this property
      * has no value.
      *
  -   * @param the document type declaration handle
  -   *
      * @return the public identifier String object, or null if there is none.
      */
     public String getDocumentTypeDeclarationPublicIdentifier()
  @@ -1473,9 +1468,6 @@
      * Get a prefix either from the qname or from the uri mapping, or just make
      * one up!
      *
  -   * @param qname The qualified name, which may be null.
  -   * @param uri The namespace URI, which may be null.
  -   *
      * @return The prefix if there is one, or null.
      */
     public String getNamespaceURI(String prefix)
  @@ -1838,8 +1830,6 @@
      * each element (such as allocating a new tree node or writing
      * output to a file).</p>
      *
  -   * @param name The element type name.
  -   *
      * @param uri The Namespace URI, or the empty string if the
      *        element has no Namespace URI or if Namespace
      *        processing is not being performed.
  @@ -2009,9 +1999,6 @@
      * method in a subclass to take specific actions at the end of
      * each element (such as finalising a tree node or writing
      * output to a file).</p>
  -   *
  -   * @param name The element type name.
  -   * @param attributes The specified or defaulted attributes.
      *
      * @param uri The Namespace URI, or the empty string if the
      *        element has no Namespace URI or if Namespace
  
  
  
  1.14      +1 -6      xml-xalan/java/src/org/apache/xml/dtm/ref/sax2dtm/SAX2DTM2.java
  
  Index: SAX2DTM2.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xml/dtm/ref/sax2dtm/SAX2DTM2.java,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- SAX2DTM2.java	15 Dec 2004 17:35:49 -0000	1.13
  +++ SAX2DTM2.java	24 Jan 2005 00:34:36 -0000	1.14
  @@ -2064,8 +2064,6 @@
      * each element (such as allocating a new tree node or writing
      * output to a file).</p>
      *
  -   * @param name The element type name.
  -   *
      * @param uri The Namespace URI, or the empty string if the
      *        element has no Namespace URI or if Namespace
      *        processing is not being performed.
  @@ -2210,9 +2208,6 @@
      * method in a subclass to take specific actions at the end of
      * each element (such as finalising a tree node or writing
      * output to a file).</p>
  -   *
  -   * @param name The element type name.
  -   * @param attributes The specified or defaulted attributes.
      *
      * @param uri The Namespace URI, or the empty string if the
      *        element has no Namespace URI or if Namespace
  
  
  
  1.10      +1 -2      xml-xalan/java/src/org/apache/xml/dtm/ref/sax2dtm/SAX2RTFDTM.java
  
  Index: SAX2RTFDTM.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xml/dtm/ref/sax2dtm/SAX2RTFDTM.java,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- SAX2RTFDTM.java	17 Feb 2004 04:07:37 -0000	1.9
  +++ SAX2RTFDTM.java	24 Jan 2005 00:34:36 -0000	1.10
  @@ -156,7 +156,6 @@
      * construction has ended? I think not, given that it may have been
      * tail-pruned.
      *
  -   *  @param nodeHandle the id of the node.
      *  @return int Node handle of Document node, or null if this DTM does not
      *  contain an "active" document.
      * */
  
  
  

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