WW-3894 updates JavaDoc to match new implementation

git-svn-id: https://svn.apache.org/repos/asf/struts/struts2/trunk@1432588 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Lukasz Lenart
2013-01-13 11:19:47 +00:00
parent 42c487bbca
commit 52dba6bc29
@@ -30,9 +30,12 @@ import java.util.regex.Pattern;
* <!-- START SNIPPET: parameters -->
* <ul>
* <li>fieldName - The field name this validator is validating. Required if using Plain-Validator Syntax otherwise not required</li>
* <li>expression - The RegExp expression REQUIRED</li>
* <li>regexp - The RegExp expression</li>
* <li>caseSensitive - Boolean (Optional). Sets whether the expression should be matched against in a case-sensitive way. Default is <code>true</code>.</li>
* <li>trim - Boolean (Optional). Sets whether the expression should be trimed before matching. Default is <code>true</code>.</li>
* <li>trim - Boolean (Optional). Sets whether the expression should be trimmed before matching. Default is <code>true</code>.</li>
* <li>regexExpression - String (Optional). Defines regExp expression as an OGNL expression - will be evaluated to String</li>
* <li>caseSensitiveExpression - String (Optional). Defines caseSensitive param as an OGNL expression - will be evaluated to Boolean.</li>
* <li>trimExpression - String (Optional). Defines trim param as an OGNL expression - will be evaluated to Boolean</li>
* </ul>
* You can mix normal params with expression aware params but thus was not tested
* <!-- END SNIPPET: parameters -->