You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2015/11/09 00:37:11 UTC

svn commit: r1713323 - /commons/proper/validator/trunk/src/main/java/org/apache/commons/validator/routines/CodeValidator.java

Author: sebb
Date: Sun Nov  8 23:37:11 2015
New Revision: 1713323

URL: http://svn.apache.org/viewvc?rev=1713323&view=rev
Log:
Javadoc clarifications

Modified:
    commons/proper/validator/trunk/src/main/java/org/apache/commons/validator/routines/CodeValidator.java

Modified: commons/proper/validator/trunk/src/main/java/org/apache/commons/validator/routines/CodeValidator.java
URL: http://svn.apache.org/viewvc/commons/proper/validator/trunk/src/main/java/org/apache/commons/validator/routines/CodeValidator.java?rev=1713323&r1=1713322&r2=1713323&view=diff
==============================================================================
--- commons/proper/validator/trunk/src/main/java/org/apache/commons/validator/routines/CodeValidator.java (original)
+++ commons/proper/validator/trunk/src/main/java/org/apache/commons/validator/routines/CodeValidator.java Sun Nov  8 23:37:11 2015
@@ -60,6 +60,7 @@ public final class CodeValidator impleme
     /**
      * Construct a code validator with a specified regular
      * expression and {@link CheckDigit}.
+     * The RegexValidator validator is created to be case-sensitive
      *
      * @param regex The format regular expression
      * @param checkdigit The check digit validation routine
@@ -71,6 +72,7 @@ public final class CodeValidator impleme
     /**
      * Construct a code validator with a specified regular
      * expression, length and {@link CheckDigit}.
+     * The RegexValidator validator is created to be case-sensitive
      *
      * @param regex The format regular expression.
      * @param length The length of the code
@@ -84,8 +86,9 @@ public final class CodeValidator impleme
     /**
      * Construct a code validator with a specified regular
      * expression, minimum/maximum length and {@link CheckDigit} validation.
+     * The RegexValidator validator is created to be case-sensitive
      *
-     * @param regex The regular expression validator
+     * @param regex The regular expression
      * @param minLength The minimum length of the code
      * @param maxLength The maximum length of the code
      * @param checkdigit The check digit validation routine