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 00:37:57 UTC

svn commit: r449320 - /xerces/java/trunk/src/org/apache/xerces/impl/validation/ConfigurableValidationState.java

Author: mrglavas
Date: Sat Sep 23 15:37:56 2006
New Revision: 449320

URL: http://svn.apache.org/viewvc?view=rev&rev=449320
Log:
Fixing @param arguments in the Javadoc.

Modified:
    xerces/java/trunk/src/org/apache/xerces/impl/validation/ConfigurableValidationState.java

Modified: xerces/java/trunk/src/org/apache/xerces/impl/validation/ConfigurableValidationState.java
URL: http://svn.apache.org/viewvc/xerces/java/trunk/src/org/apache/xerces/impl/validation/ConfigurableValidationState.java?view=diff&rev=449320&r1=449319&r2=449320
==============================================================================
--- xerces/java/trunk/src/org/apache/xerces/impl/validation/ConfigurableValidationState.java (original)
+++ xerces/java/trunk/src/org/apache/xerces/impl/validation/ConfigurableValidationState.java Sat Sep 23 15:37:56 2006
@@ -51,7 +51,7 @@
     
     /**
      * Turns checking for ID/IDREF errors on and off.
-     * @param setting: true to turn on error checking
+     * @param setting true to turn on error checking,
      *                 false to turn off error checking
      */
     public void setIdIdrefChecking(boolean setting) {
@@ -60,7 +60,7 @@
     
     /**
      * Turns checking for unparsed entity errors on and off.
-     * @param setting: true to turn on error checking
+     * @param setting true to turn on error checking,
      *                 false to turn off error checking
      */
     public void setUnparsedEntityChecking(boolean setting) {
@@ -105,7 +105,7 @@
     
     /**
      * Adds the ID, if ID/IDREF checking is enabled.
-     * @param the ID to add
+     * @param name the ID to add
      */
     public void addId(String name) {
         if (fIdIdrefChecking) {
@@ -115,7 +115,7 @@
     
     /**
      * Adds the IDREF, if ID/IDREF checking is enabled.
-     * @param the IDREF to add
+     * @param name the IDREF to add
      */
     public void addIdRef(String name) {
         if (fIdIdrefChecking) {



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