You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by tw...@apache.org on 2002/11/19 02:41:38 UTC

cvs commit: xml-xerces/java/src/org/apache/xerces/parsers DTDConfiguration.java NonValidatingConfiguration.java

twl         2002/11/18 17:41:38

  Modified:    java/src/org/apache/xerces/dom
                        CoreDOMImplementationImpl.java TextImpl.java
                        AttrImpl.java NamedNodeMapImpl.java
                        DOMImplementationImpl.java NodeImpl.java
                        ParentNode.java PSVIDOMImplementationImpl.java
               java/src/org/apache/xerces/impl XML11DTDScannerImpl.java
                        XMLNSDocumentScannerImpl.java XMLEntityManager.java
                        XML11DocumentScannerImpl.java
                        XMLDocumentFragmentScannerImpl.java
                        XMLDTDScannerImpl.java XMLDocumentScannerImpl.java
                        XMLScanner.java
               java/src/org/apache/xerces/xni/parser
                        XMLDocumentScanner.java
                        XMLPullParserConfiguration.java XMLDTDScanner.java
               java/src/org/apache/xerces/parsers DTDConfiguration.java
                        NonValidatingConfiguration.java
  Log:
  javadoc fix: change @returns to @return
  
  Revision  Changes    Path
  1.19      +3 -3      xml-xerces/java/src/org/apache/xerces/dom/CoreDOMImplementationImpl.java
  
  Index: CoreDOMImplementationImpl.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/dom/CoreDOMImplementationImpl.java,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- CoreDOMImplementationImpl.java	2 Nov 2002 01:02:23 -0000	1.18
  +++ CoreDOMImplementationImpl.java	19 Nov 2002 01:41:36 -0000	1.19
  @@ -119,8 +119,8 @@
   	 * This is interpreted as "Version of the DOM API supported for the
   	 * specified Feature", and in Level 1 should be "1.0"
   	 *
  -	 * @returns    true iff this implementation is compatable with the
  -	 * specified feature and version.
  +	 * @return    true iff this implementation is compatable with the specified
  +	 * feature and version.
   	 */
   	public boolean hasFeature(String feature, String version) {
   		// Currently, we support only XML Level 1 version 1.0
  
  
  
  1.19      +2 -2      xml-xerces/java/src/org/apache/xerces/dom/TextImpl.java
  
  Index: TextImpl.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/dom/TextImpl.java,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- TextImpl.java	24 Aug 2002 21:25:48 -0000	1.18
  +++ TextImpl.java	19 Nov 2002 01:41:36 -0000	1.19
  @@ -312,7 +312,7 @@
        * @param offset The offset at which to split. If offset is at the
        * end of the available data, the second node will be empty.
        *
  -     * @returns A reference to the new node (containing data after the
  +     * @return A reference to the new node (containing data after the
        * offset point). The original node will contain data up to that
        * point.
        *
  
  
  
  1.47      +4 -4      xml-xerces/java/src/org/apache/xerces/dom/AttrImpl.java
  
  Index: AttrImpl.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/dom/AttrImpl.java,v
  retrieving revision 1.46
  retrieving revision 1.47
  diff -u -r1.46 -r1.47
  --- AttrImpl.java	25 Jul 2002 19:16:10 -0000	1.46
  +++ AttrImpl.java	19 Nov 2002 01:41:36 -0000	1.47
  @@ -647,8 +647,8 @@
        * immediately before. If refChild is null, the insertion occurs
        * after all existing Nodes, like appendChild().
        *
  -     * @returns newChild, in its new state (relocated, or emptied in the
  -     * case of DocumentNode.)
  +     * @return newChild, in its new state (relocated, or emptied in the case of
  +     * DocumentNode.)
        *
        * @throws DOMException(HIERARCHY_REQUEST_ERR) if newChild is of a
        * type that shouldn't be a child of this node, or if newChild is an
  @@ -930,7 +930,7 @@
        * parent, if any. Equivalent to inserting newChild before oldChild,
        * then removing oldChild.
        *
  -     * @returns oldChild, in its new state (removed).
  +     * @return oldChild, in its new state (removed).
        *
        * @throws DOMException(HIERARCHY_REQUEST_ERR) if newChild is of a
        * type that shouldn't be a child of this node, or if newChild is
  
  
  
  1.33      +5 -5      xml-xerces/java/src/org/apache/xerces/dom/NamedNodeMapImpl.java
  
  Index: NamedNodeMapImpl.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/dom/NamedNodeMapImpl.java,v
  retrieving revision 1.32
  retrieving revision 1.33
  diff -u -r1.32 -r1.33
  --- NamedNodeMapImpl.java	29 Aug 2002 18:40:00 -0000	1.32
  +++ NamedNodeMapImpl.java	19 Nov 2002 01:41:36 -0000	1.33
  @@ -148,8 +148,8 @@
        * stable ordering of entries... and be prepared for double-reporting
        * or skips as insertion and deletion occur.
        *
  -     * @returns the node which currenly has the specified index, or null
  -     * if index is greater than or equal to getLength().
  +     * @return the node which currenly has the specified index, or null if index
  +     * is greater than or equal to getLength().
        */
       public Node item(int index) {
       	return (nodes != null && index < nodes.size()) ?
  @@ -160,8 +160,8 @@
        * Retrieve a node by name.
        *
        * @param name Name of a node to look up.
  -     * @returns the Node (of unspecified sub-class) stored with that name,
  -     * or null if no value has been assigned to that name.
  +     * @return the Node (of unspecified sub-class) stored with that name, or
  +     * null if no value has been assigned to that name.
        */
       public Node getNamedItem(String name) {
   
  
  
  
  1.26      +2 -2      xml-xerces/java/src/org/apache/xerces/dom/DOMImplementationImpl.java
  
  Index: DOMImplementationImpl.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/dom/DOMImplementationImpl.java,v
  retrieving revision 1.25
  retrieving revision 1.26
  diff -u -r1.25 -r1.26
  --- DOMImplementationImpl.java	2 Nov 2002 01:02:23 -0000	1.25
  +++ DOMImplementationImpl.java	19 Nov 2002 01:41:36 -0000	1.26
  @@ -115,7 +115,7 @@
        * This is interpreted as "Version of the DOM API supported for the
        * specified Feature", and in Level 1 should be "1.0"
        *
  -     * @returns    true iff this implementation is compatable with the
  +     * @return    true iff this implementation is compatable with the
        * specified feature and version.
        */
       public boolean hasFeature(String feature, String version) {
  
  
  
  1.59      +6 -6      xml-xerces/java/src/org/apache/xerces/dom/NodeImpl.java
  
  Index: NodeImpl.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/dom/NodeImpl.java,v
  retrieving revision 1.58
  retrieving revision 1.59
  diff -u -r1.58 -r1.59
  --- NodeImpl.java	1 Oct 2002 19:59:39 -0000	1.58
  +++ NodeImpl.java	19 Nov 2002 01:41:36 -0000	1.59
  @@ -251,8 +251,8 @@
        * By default we do not accept any children, ParentNode overrides this.
        * @see ParentNode
        *
  -     * @returns newChild, in its new state (relocated, or emptied in the
  -     * case of DocumentNode.)
  +     * @return newChild, in its new state (relocated, or emptied in the case of
  +     * DocumentNode.)
        *
        * @throws DOMException(HIERARCHY_REQUEST_ERR) if newChild is of a
        * type that shouldn't be a child of this node.
  @@ -479,8 +479,8 @@
        * immediately before. If refChild is null, the insertion occurs
        * after all existing Nodes, like appendChild().
        *
  -     * @returns newChild, in its new state (relocated, or emptied in the
  -     * case of DocumentNode.)
  +     * @return newChild, in its new state (relocated, or emptied in the case of
  +     * DocumentNode.)
        *
        * @throws DOMException(HIERARCHY_REQUEST_ERR) if newChild is of a
        * type that shouldn't be a child of this node, or if newChild is an
  @@ -533,7 +533,7 @@
        * By default we do not have any children, ParentNode overrides this.
        * @see ParentNode
        *
  -     * @returns oldChild, in its new state (removed).
  +     * @return oldChild, in its new state (removed).
        *
        * @throws DOMException(HIERARCHY_REQUEST_ERR) if newChild is of a
        * type that shouldn't be a child of this node, or if newChild is
  
  
  
  1.37      +4 -4      xml-xerces/java/src/org/apache/xerces/dom/ParentNode.java
  
  Index: ParentNode.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/dom/ParentNode.java,v
  retrieving revision 1.36
  retrieving revision 1.37
  diff -u -r1.36 -r1.37
  --- ParentNode.java	24 Aug 2002 20:45:49 -0000	1.36
  +++ ParentNode.java	19 Nov 2002 01:41:36 -0000	1.37
  @@ -298,8 +298,8 @@
        * immediately before. If refChild is null, the insertion occurs
        * after all existing Nodes, like appendChild().
        *
  -     * @returns newChild, in its new state (relocated, or emptied in the
  -     * case of DocumentNode.)
  +     * @return newChild, in its new state (relocated, or emptied in the case of
  +     * DocumentNode.)
        *
        * @throws DOMException(HIERARCHY_REQUEST_ERR) if newChild is of a
        * type that shouldn't be a child of this node, or if newChild is an
  @@ -607,7 +607,7 @@
        * parent, if any. Equivalent to inserting newChild before oldChild,
        * then removing oldChild.
        *
  -     * @returns oldChild, in its new state (removed).
  +     * @return oldChild, in its new state (removed).
        *
        * @throws DOMException(HIERARCHY_REQUEST_ERR) if newChild is of a
        * type that shouldn't be a child of this node, or if newChild is
  
  
  
  1.2       +3 -3      xml-xerces/java/src/org/apache/xerces/dom/PSVIDOMImplementationImpl.java
  
  Index: PSVIDOMImplementationImpl.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/dom/PSVIDOMImplementationImpl.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- PSVIDOMImplementationImpl.java	17 Jul 2002 20:07:36 -0000	1.1
  +++ PSVIDOMImplementationImpl.java	19 Nov 2002 01:41:36 -0000	1.2
  @@ -111,8 +111,8 @@
        * This is interpreted as "Version of the DOM API supported for the
        * specified Feature", and in Level 1 should be "1.0"
        *
  -     * @returns    true iff this implementation is compatable with the
  -     * specified feature and version.
  +     * @return    true iff this implementation is compatable with the specified
  +     * feature and version.
        */
       public boolean hasFeature(String feature, String version) {
           return super.hasFeature(feature, version) ||
  
  
  
  1.2       +2 -2      xml-xerces/java/src/org/apache/xerces/impl/XML11DTDScannerImpl.java
  
  Index: XML11DTDScannerImpl.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/impl/XML11DTDScannerImpl.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XML11DTDScannerImpl.java	31 Jul 2002 14:08:12 -0000	1.1
  +++ XML11DTDScannerImpl.java	19 Nov 2002 01:41:37 -0000	1.2
  @@ -159,7 +159,7 @@
        * leading and trailing white space must be removed.
        *
        * @param literal The string to fill in with the public ID literal.
  -     * @returns True on success.
  +     * @return True on success.
        *
        * <strong>Note:</strong> This method uses fStringBuffer, anything in it at
        * the time of calling is lost.
  
  
  
  1.8       +4 -4      xml-xerces/java/src/org/apache/xerces/impl/XMLNSDocumentScannerImpl.java
  
  Index: XMLNSDocumentScannerImpl.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/impl/XMLNSDocumentScannerImpl.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- XMLNSDocumentScannerImpl.java	28 Oct 2002 05:59:10 -0000	1.7
  +++ XMLNSDocumentScannerImpl.java	19 Nov 2002 01:41:37 -0000	1.8
  @@ -162,7 +162,7 @@
        * destroyed. The caller should copy important information out of
        * these variables before calling this method.
        *
  -     * @returns True if element is empty. (i.e. It matches
  +     * @return True if element is empty. (i.e. It matches
        *          production [44].
        */
       protected boolean scanStartElement()
  @@ -500,7 +500,7 @@
        * copy the needed information out of this variable before calling
        * this method.
        *
  -     * @returns The element depth.
  +     * @return The element depth.
        */
       protected int scanEndElement() throws IOException, XNIException {
           if (DEBUG_CONTENT_SCANNING) System.out.println(">>> scanEndElement()");
  @@ -584,7 +584,7 @@
            * is no longer in the pipeline bind namespaces in the scanner.
            *
            *
  -         * @returns True if the caller should stop and return true which
  +         * @return True if the caller should stop and return true which
            *          allows the scanner to switch to a new scanning
            *          dispatcher. A return value of false indicates that
            *          the content dispatcher should continue as normal.
  
  
  
  1.52      +7 -7      xml-xerces/java/src/org/apache/xerces/impl/XMLEntityManager.java
  
  Index: XMLEntityManager.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/impl/XMLEntityManager.java,v
  retrieving revision 1.51
  retrieving revision 1.52
  diff -u -r1.51 -r1.52
  --- XMLEntityManager.java	8 Nov 2002 15:53:13 -0000	1.51
  +++ XMLEntityManager.java	19 Nov 2002 01:41:37 -0000	1.52
  @@ -496,8 +496,8 @@
        * Checks whether an entity given by name is external.
        *
        * @param entityName The name of the entity to check.
  -     * @returns True if the entity is external, false otherwise
  -     *           (including when the entity is not declared).
  +     * @return True if the entity is external, false otherwise
  +     * (including when the entity is not declared).
        */
       public boolean isExternalEntity(String entityName) {
   
  @@ -513,7 +513,7 @@
        // in the external subset. 
        *
        * @param entityName The name of the entity to check.
  -     * @returns True if the entity was declared in the external subset, false otherwise
  +     * @return True if the entity was declared in the external subset, false otherwise
        *           (including when the entity is not declared).
        */
       public boolean isEntityDeclInExternalSubset(String entityName) {
  @@ -562,7 +562,7 @@
        * Checks whether an entity given by name is unparsed.
        *
        * @param entityName The name of the entity to check.
  -     * @returns True if the entity is unparsed, false otherwise
  +     * @return True if the entity is unparsed, false otherwise
        *          (including when the entity is not declared).
        */
       public boolean isUnparsedEntity(String entityName) {
  @@ -578,7 +578,7 @@
        * Checks whether an entity given by name is declared.
        *
        * @param entityName The name of the entity to check.
  -     * @returns True if the entity is declared, false otherwise.
  +     * @return True if the entity is declared, false otherwise.
        */
       public boolean isDeclaredEntity(String entityName) {
   
  @@ -3468,7 +3468,7 @@
            *                     boundary will be signaled by the return
            *                     value.
            *
  -         * @returns Returns true if the entity changed as a result of this
  +         * @return Returns true if the entity changed as a result of this
            *          load operation.
            */
           final boolean load(int offset, boolean changeEntity)
  
  
  
  1.2       +3 -3      xml-xerces/java/src/org/apache/xerces/impl/XML11DocumentScannerImpl.java
  
  Index: XML11DocumentScannerImpl.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/impl/XML11DocumentScannerImpl.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XML11DocumentScannerImpl.java	31 Jul 2002 14:08:12 -0000	1.1
  +++ XML11DocumentScannerImpl.java	19 Nov 2002 01:41:37 -0000	1.2
  @@ -143,7 +143,7 @@
       /**
        * Scans element content.
        *
  -     * @returns Returns the next character on the stream.
  +     * @return Returns the next character on the stream.
        */
       protected int scanContent() throws IOException, XNIException {
   
  @@ -612,7 +612,7 @@
        * leading and trailing white space must be removed.
        *
        * @param literal The string to fill in with the public ID literal.
  -     * @returns True on success.
  +     * @return True on success.
        *
        * <strong>Note:</strong> This method uses fStringBuffer, anything in it at
        * the time of calling is lost.
  
  
  
  1.25      +11 -11    xml-xerces/java/src/org/apache/xerces/impl/XMLDocumentFragmentScannerImpl.java
  
  Index: XMLDocumentFragmentScannerImpl.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/impl/XMLDocumentFragmentScannerImpl.java,v
  retrieving revision 1.24
  retrieving revision 1.25
  diff -u -r1.24 -r1.25
  --- XMLDocumentFragmentScannerImpl.java	28 Oct 2002 05:59:10 -0000	1.24
  +++ XMLDocumentFragmentScannerImpl.java	19 Nov 2002 01:41:37 -0000	1.25
  @@ -335,7 +335,7 @@
        *                 permitted to completely scan a document if it does
        *                 not support this "pull" scanning model.
        *
  -     * @returns True if there is more to scan, false otherwise.
  +     * @return True if there is more to scan, false otherwise.
        */
       public boolean scanDocument(boolean complete) 
           throws IOException, XNIException {
  @@ -749,7 +749,7 @@
        * destroyed. The caller should copy important information out of
        * these variables before calling this method.
        *
  -     * @returns True if element is empty. (i.e. It matches
  +     * @return True if element is empty. (i.e. It matches
        *          production [44].
        */
       protected boolean scanStartElement() 
  @@ -890,7 +890,7 @@
       /**
        * Scans element content.
        *
  -     * @returns Returns the next character on the stream.
  +     * @return Returns the next character on the stream.
        */
       protected int scanContent() throws IOException, XNIException {
   
  @@ -1029,7 +1029,7 @@
        * copy the needed information out of this variable before calling
        * this method.
        *
  -     * @returns The element depth.
  +     * @return The element depth.
        */
       protected int scanEndElement() throws IOException, XNIException {
           if (DEBUG_CONTENT_SCANNING) System.out.println(">>> scanEndElement()");
  @@ -1197,7 +1197,7 @@
        *
        * @param element The element.
        *
  -     * @returns The element depth.
  +     * @return The element depth.
        *
        * @throws XNIException Thrown if the handler throws a SAX exception
        *                      upon notification.
  @@ -1417,7 +1417,7 @@
            * @param complete True if this dispatcher is intended to scan
            *                 and dispatch as much as possible.                 
            *
  -         * @returns True if there is more to dispatch either from this 
  +         * @return True if there is more to dispatch either from this 
            *          or a another dispatcher.
            *
            * @throws IOException  Thrown on i/o error.
  @@ -1447,7 +1447,7 @@
            * @param complete True if this dispatcher is intended to scan
            *                 and dispatch as much as possible.                 
            *
  -         * @returns True if there is more to dispatch either from this 
  +         * @return True if there is more to dispatch either from this 
            *          or a another dispatcher.
            *
            * @throws IOException  Thrown on i/o error.
  @@ -1643,7 +1643,7 @@
            * to add code to handle scanning for a the "DOCTYPE" string 
            * after the string "<!" has been scanned.
            * 
  -         * @returns True if the "DOCTYPE" was scanned; false if "DOCTYPE"
  +         * @return True if the "DOCTYPE" was scanned; false if "DOCTYPE"
            *          was not scanned.
            */
           protected boolean scanForDoctypeHook() 
  @@ -1659,7 +1659,7 @@
            * scanner must handle the trailing miscellanous section of
            * the document after the end of the document's root element.
            *
  -         * @returns True if the caller should stop and return true which
  +         * @return True if the caller should stop and return true which
            *          allows the scanner to switch to a new scanning 
            *          dispatcher. A return value of false indicates that
            *          the content dispatcher should continue as normal.
  @@ -1676,7 +1676,7 @@
            * "root" element. However, when scanning a full XML document,
            * the scanner must handle the root element specially.
            *
  -         * @returns True if the caller should stop and return true which
  +         * @return True if the caller should stop and return true which
            *          allows the scanner to switch to a new scanning 
            *          dispatcher. A return value of false indicates that
            *          the content dispatcher should continue as normal.
  
  
  
  1.32      +5 -5      xml-xerces/java/src/org/apache/xerces/impl/XMLDTDScannerImpl.java
  
  Index: XMLDTDScannerImpl.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/impl/XMLDTDScannerImpl.java,v
  retrieving revision 1.31
  retrieving revision 1.32
  diff -u -r1.31 -r1.32
  --- XMLDTDScannerImpl.java	24 Sep 2002 09:39:43 -0000	1.31
  +++ XMLDTDScannerImpl.java	19 Nov 2002 01:41:37 -0000	1.32
  @@ -299,7 +299,7 @@
        *                 permitted to completely scan a document if it does
        *                 not support this "pull" scanning model.
        *
  -     * @returns True if there is more to scan, false otherwise.
  +     * @return True if there is more to scan, false otherwise.
        */
       public boolean scanDTDExternalSubset(boolean complete) 
           throws IOException, XNIException {
  @@ -350,7 +350,7 @@
        *                       the handler of the end of the DTD in the
        *                       absence of an external subset.
        *
  -     * @returns True if there is more to scan, false otherwise.
  +     * @return True if there is more to scan, false otherwise.
        */
       public boolean scanDTDInternalSubset(boolean complete, boolean standalone,
                                            boolean hasExternalSubset)
  @@ -680,7 +680,7 @@
        * @param complete True if this method is intended to scan
        *                 and dispatch as much as possible.                 
        *
  -     * @returns True if a TextDecl was scanned.
  +     * @return True if a TextDecl was scanned.
        *
        * @throws IOException  Thrown on i/o error.
        * @throws XNIException Thrown on parse error.
  @@ -1878,7 +1878,7 @@
        * @param complete True if this method is intended to scan
        *                 and dispatch as much as possible.                 
        *
  -     * @returns True if there is more to scan.
  +     * @return True if there is more to scan.
        *
        * @throws IOException  Thrown on i/o error.
        * @throws XNIException Thrown on parse error.
  
  
  
  1.29      +8 -8      xml-xerces/java/src/org/apache/xerces/impl/XMLDocumentScannerImpl.java
  
  Index: XMLDocumentScannerImpl.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/impl/XMLDocumentScannerImpl.java,v
  retrieving revision 1.28
  retrieving revision 1.29
  diff -u -r1.28 -r1.29
  --- XMLDocumentScannerImpl.java	9 Oct 2002 21:12:11 -0000	1.28
  +++ XMLDocumentScannerImpl.java	19 Nov 2002 01:41:37 -0000	1.29
  @@ -618,7 +618,7 @@
            * @param complete True if this dispatcher is intended to scan
            *                 and dispatch as much as possible.
            *
  -         * @returns True if there is more to dispatch either from this
  +         * @return True if there is more to dispatch either from this
            *          or a another dispatcher.
            *
            * @throws IOException  Thrown on i/o error.
  @@ -689,7 +689,7 @@
            * @param complete True if this dispatcher is intended to scan
            *                 and dispatch as much as possible.
            *
  -         * @returns True if there is more to dispatch either from this
  +         * @return True if there is more to dispatch either from this
            *          or a another dispatcher.
            *
            * @throws IOException  Thrown on i/o error.
  @@ -846,7 +846,7 @@
            * @param complete True if this dispatcher is intended to scan
            *                 and dispatch as much as possible.
            *
  -         * @returns True if there is more to dispatch either from this
  +         * @return True if there is more to dispatch either from this
            *          or a another dispatcher.
            *
            * @throws IOException  Thrown on i/o error.
  @@ -965,7 +965,7 @@
            * to add code to handle scanning for a the "DOCTYPE" string
            * after the string "<!" has been scanned.
            *
  -         * @returns True if the "DOCTYPE" was scanned; false if "DOCTYPE"
  +         * @return True if the "DOCTYPE" was scanned; false if "DOCTYPE"
            *          was not scanned.
            */
           protected boolean scanForDoctypeHook()
  @@ -987,7 +987,7 @@
            * scanner must handle the trailing miscellanous section of
            * the document after the end of the document's root element.
            *
  -         * @returns True if the caller should stop and return true which
  +         * @return True if the caller should stop and return true which
            *          allows the scanner to switch to a new scanning
            *          dispatcher. A return value of false indicates that
            *          the content dispatcher should continue as normal.
  @@ -1008,7 +1008,7 @@
            * "root" element. However, when scanning a full XML document,
            * the scanner must handle the root element specially.
            *
  -         * @returns True if the caller should stop and return true which
  +         * @return True if the caller should stop and return true which
            *          allows the scanner to switch to a new scanning
            *          dispatcher. A return value of false indicates that
            *          the content dispatcher should continue as normal.
  @@ -1062,7 +1062,7 @@
            * @param complete True if this dispatcher is intended to scan
            *                 and dispatch as much as possible.
            *
  -         * @returns True if there is more to dispatch either from this
  +         * @return True if there is more to dispatch either from this
            *          or a another dispatcher.
            *
            * @throws IOException  Thrown on i/o error.
  
  
  
  1.22      +3 -3      xml-xerces/java/src/org/apache/xerces/impl/XMLScanner.java
  
  Index: XMLScanner.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/impl/XMLScanner.java,v
  retrieving revision 1.21
  retrieving revision 1.22
  diff -u -r1.21 -r1.22
  --- XMLScanner.java	12 Sep 2002 20:44:11 -0000	1.21
  +++ XMLScanner.java	19 Nov 2002 01:41:37 -0000	1.22
  @@ -1004,7 +1004,7 @@
        * leading and trailing white space must be removed.
        *
        * @param literal The string to fill in with the public ID literal.
  -     * @returns True on success.
  +     * @return True on success.
        *
        * <strong>Note:</strong> This method uses fStringBuffer, anything in it at
        * the time of calling is lost.
  @@ -1223,7 +1223,7 @@
        * identified as a high surrogate.
        *
        * @param buf The StringBuffer to append the read surrogates to.
  -     * @returns True if it succeeded.
  +     * @return True if it succeeded.
        */
       protected boolean scanSurrogates(XMLStringBuffer buf)
           throws IOException, XNIException {
  
  
  
  1.4       +2 -2      xml-xerces/java/src/org/apache/xerces/xni/parser/XMLDocumentScanner.java
  
  Index: XMLDocumentScanner.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/xni/parser/XMLDocumentScanner.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- XMLDocumentScanner.java	29 Jan 2002 01:15:19 -0000	1.3
  +++ XMLDocumentScanner.java	19 Nov 2002 01:41:38 -0000	1.4
  @@ -104,7 +104,7 @@
        *                 permitted to completely scan a document if it does
        *                 not support this "pull" scanning model.
        *
  -     * @returns True if there is more to scan, false otherwise.
  +     * @return True if there is more to scan, false otherwise.
        */
       public boolean scanDocument(boolean complete)
           throws IOException, XNIException;
  
  
  
  1.5       +2 -2      xml-xerces/java/src/org/apache/xerces/xni/parser/XMLPullParserConfiguration.java
  
  Index: XMLPullParserConfiguration.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/xni/parser/XMLPullParserConfiguration.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- XMLPullParserConfiguration.java	29 Jan 2002 23:16:44 -0000	1.4
  +++ XMLPullParserConfiguration.java	19 Nov 2002 01:41:38 -0000	1.5
  @@ -113,7 +113,7 @@
        * @param complete True if the pull parser should parse the
        *                 remaining document completely.
        *
  -     * @returns True if there is more document to parse.
  +     * @return True if there is more document to parse.
        *
        * @exception XNIException Any XNI exception, possibly wrapping 
        *                         another exception.
  
  
  
  1.5       +3 -3      xml-xerces/java/src/org/apache/xerces/xni/parser/XMLDTDScanner.java
  
  Index: XMLDTDScanner.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/xni/parser/XMLDTDScanner.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- XMLDTDScanner.java	1 Aug 2002 17:16:46 -0000	1.4
  +++ XMLDTDScanner.java	19 Nov 2002 01:41:38 -0000	1.5
  @@ -111,7 +111,7 @@
        *                       the handler of the end of the DTD in the
        *                       absence of an external subset.
        *
  -     * @returns True if there is more to scan, false otherwise.
  +     * @return True if there is more to scan, false otherwise.
        */
       public boolean scanDTDInternalSubset(boolean complete, boolean standalone,
                                            boolean hasExternalSubset)
  @@ -128,7 +128,7 @@
        *                 permitted to completely scan a document if it does
        *                 not support this "pull" scanning model.
        *
  -     * @returns True if there is more to scan, false otherwise.
  +     * @return True if there is more to scan, false otherwise.
        */
       public boolean scanDTDExternalSubset(boolean complete) 
           throws IOException, XNIException;
  
  
  
  1.8       +2 -2      xml-xerces/java/src/org/apache/xerces/parsers/DTDConfiguration.java
  
  Index: DTDConfiguration.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/parsers/DTDConfiguration.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- DTDConfiguration.java	25 Sep 2002 15:53:47 -0000	1.7
  +++ DTDConfiguration.java	19 Nov 2002 01:41:38 -0000	1.8
  @@ -483,7 +483,7 @@
        * @param complete True if the pull parser should parse the
        *                 remaining document completely.
        *
  -     * @returns True if there is more document to parse.
  +     * @return True if there is more document to parse.
        *
        * @exception XNIException Any XNI exception, possibly wrapping 
        *                         another exception.
  
  
  
  1.8       +2 -2      xml-xerces/java/src/org/apache/xerces/parsers/NonValidatingConfiguration.java
  
  Index: NonValidatingConfiguration.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/parsers/NonValidatingConfiguration.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- NonValidatingConfiguration.java	25 Oct 2002 16:44:42 -0000	1.7
  +++ NonValidatingConfiguration.java	19 Nov 2002 01:41:38 -0000	1.8
  @@ -451,7 +451,7 @@
        * @param complete True if the pull parser should parse the
        *                 remaining document completely.
        *
  -     * @returns True if there is more document to parse.
  +     * @return True if there is more document to parse.
        *
        * @exception XNIException Any XNI exception, possibly wrapping 
        *                         another exception.
  
  
  

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