You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by mr...@apache.org on 2006/09/24 01:11:51 UTC

svn commit: r449330 - in /xerces/java/trunk/src/org/apache/xerces/impl: XML11EntityScanner.java XMLDTDScannerImpl.java XMLEntityManager.java XMLEntityScanner.java XMLNSDocumentScannerImpl.java

Author: mrglavas
Date: Sat Sep 23 16:11:50 2006
New Revision: 449330

URL: http://svn.apache.org/viewvc?view=rev&rev=449330
Log:
Various Javadoc fixes.

Modified:
    xerces/java/trunk/src/org/apache/xerces/impl/XML11EntityScanner.java
    xerces/java/trunk/src/org/apache/xerces/impl/XMLDTDScannerImpl.java
    xerces/java/trunk/src/org/apache/xerces/impl/XMLEntityManager.java
    xerces/java/trunk/src/org/apache/xerces/impl/XMLEntityScanner.java
    xerces/java/trunk/src/org/apache/xerces/impl/XMLNSDocumentScannerImpl.java

Modified: xerces/java/trunk/src/org/apache/xerces/impl/XML11EntityScanner.java
URL: http://svn.apache.org/viewvc/xerces/java/trunk/src/org/apache/xerces/impl/XML11EntityScanner.java?view=diff&rev=449330&r1=449329&r2=449330
==============================================================================
--- xerces/java/trunk/src/org/apache/xerces/impl/XML11EntityScanner.java (original)
+++ xerces/java/trunk/src/org/apache/xerces/impl/XML11EntityScanner.java Sat Sep 23 16:11:50 2006
@@ -1054,7 +1054,7 @@
      *
      * @param delimiter The string that signifies the end of the character
      *                  data to be scanned.
-     * @param data      The data structure to fill.
+     * @param buffer    The XMLStringBuffer to fill.
      *
      * @return Returns true if there is more data to scan, false otherwise.
      *

Modified: xerces/java/trunk/src/org/apache/xerces/impl/XMLDTDScannerImpl.java
URL: http://svn.apache.org/viewvc/xerces/java/trunk/src/org/apache/xerces/impl/XMLDTDScannerImpl.java?view=diff&rev=449330&r1=449329&r2=449330
==============================================================================
--- xerces/java/trunk/src/org/apache/xerces/impl/XMLDTDScannerImpl.java (original)
+++ xerces/java/trunk/src/org/apache/xerces/impl/XMLDTDScannerImpl.java Sat Sep 23 16:11:50 2006
@@ -297,10 +297,10 @@
      * @param standalone True if the document was specified as standalone.
      *                   This value is important for verifying certain
      *                   well-formedness constraints.
-     * @param hasExternalDTD True if the document has an external DTD.
-     *                       This allows the scanner to properly notify
-     *                       the handler of the end of the DTD in the
-     *                       absence of an external subset.
+     * @param hasExternalSubset True if the document has an external DTD.
+     *                          This allows the scanner to properly notify
+     *                          the handler of the end of the DTD in the
+     *                          absence of an external subset.
      *
      * @return True if there is more to scan, false otherwise.
      */
@@ -648,12 +648,9 @@
     }
 
     /** 
-     * Dispatch an XML "event".
+     * Dispatch an XML "event".              
      *
-     * @param complete True if this method is intended to scan
-     *                 and dispatch as much as possible.                 
-     *
-     * @return 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.
@@ -1320,8 +1317,11 @@
      * [60] DefaultDecl ::= '#REQUIRED' | '#IMPLIED' | (('#FIXED' S)? AttValue)
      * </pre>
      *
-     * @param name The name of the attribute being scanned.
+     * @param elName
+     * @param atName The name of the attribute being scanned.
+     * @param type
      * @param defaultVal The string to fill in with the default value.
+     * @param nonNormalizedDefaultVal
      */
     protected final String scanAttDefaultDecl(String elName, String atName,
                                               String type,

Modified: xerces/java/trunk/src/org/apache/xerces/impl/XMLEntityManager.java
URL: http://svn.apache.org/viewvc/xerces/java/trunk/src/org/apache/xerces/impl/XMLEntityManager.java?view=diff&rev=449330&r1=449329&r2=449330
==============================================================================
--- xerces/java/trunk/src/org/apache/xerces/impl/XMLEntityManager.java (original)
+++ xerces/java/trunk/src/org/apache/xerces/impl/XMLEntityManager.java Sat Sep 23 16:11:50 2006
@@ -626,13 +626,7 @@
      * is unable to resolve the entity, then default entity
      * resolution will occur.
      *
-     * @param publicId     The public identifier of the entity.
-     * @param systemId     The system identifier of the entity.
-     * @param baseSystemId The base system identifier of the entity.
-     *                     This is the system identifier of the current
-     *                     entity and is used to expand the system
-     *                     identifier when the system identifier is a
-     *                     relative URI.
+     * @param resourceIdentifier The XMLResourceIdentifier for the resource to resolve.
      *
      * @return Returns an input source that wraps the resolved entity.
      *         This method will never return null.

Modified: xerces/java/trunk/src/org/apache/xerces/impl/XMLEntityScanner.java
URL: http://svn.apache.org/viewvc/xerces/java/trunk/src/org/apache/xerces/impl/XMLEntityScanner.java?view=diff&rev=449330&r1=449329&r2=449330
==============================================================================
--- xerces/java/trunk/src/org/apache/xerces/impl/XMLEntityScanner.java (original)
+++ xerces/java/trunk/src/org/apache/xerces/impl/XMLEntityScanner.java Sat Sep 23 16:11:50 2006
@@ -961,7 +961,7 @@
      *
      * @param delimiter The string that signifies the end of the character
      *                  data to be scanned.
-     * @param data      The data structure to fill.
+     * @param buffer    The XMLStringBuffer to fill.
      *
      * @return Returns true if there is more data to scan, false otherwise.
      *

Modified: xerces/java/trunk/src/org/apache/xerces/impl/XMLNSDocumentScannerImpl.java
URL: http://svn.apache.org/viewvc/xerces/java/trunk/src/org/apache/xerces/impl/XMLNSDocumentScannerImpl.java?view=diff&rev=449330&r1=449329&r2=449330
==============================================================================
--- xerces/java/trunk/src/org/apache/xerces/impl/XMLNSDocumentScannerImpl.java (original)
+++ xerces/java/trunk/src/org/apache/xerces/impl/XMLNSDocumentScannerImpl.java Sat Sep 23 16:11:50 2006
@@ -94,13 +94,10 @@
      * The scanner is responsible for removing DTD validator
      * from the pipeline if it is not needed.
      *
-     * @param previous The filter component before DTDValidator
-     * @param dtdValidator
-     *                 The DTDValidator
-     * @param next     The documentHandler after the DTDValidator
+     * @param dtdValidator The DTDValidator
      */
-    public void setDTDValidator(XMLDTDValidatorFilter dtd){
-        fDTDValidator = dtd;
+    public void setDTDValidator(XMLDTDValidatorFilter dtdValidator) {
+        fDTDValidator = dtdValidator;
     }
 
     /**



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