Author: epbernard
Date: 2009-06-22 05:36:49 -0400 (Mon, 22 Jun 2009)
New Revision: 16846
Modified:
beanvalidation/trunk/validation-api/src/main/java/javax/validation/Validator.java
Log:
adjust some IAE groups cannot be null
Modified:
beanvalidation/trunk/validation-api/src/main/java/javax/validation/Validator.java
===================================================================
---
beanvalidation/trunk/validation-api/src/main/java/javax/validation/Validator.java 2009-06-21
09:37:10 UTC (rev 16845)
+++
beanvalidation/trunk/validation-api/src/main/java/javax/validation/Validator.java 2009-06-22
09:36:49 UTC (rev 16846)
@@ -37,6 +37,7 @@
* @return constraint violations or an empty Set if none
*
* @throws IllegalArgumentException if object is null
+ * or if null is passed to the varargs groups
* @throws ValidationException if a non recoverable error happens
* during the validation process
*/
@@ -55,6 +56,7 @@
*
* @throws IllegalArgumentException if object is null, if propertyName null, empty
* or not a valid object property
+ * or if null is passed to the varargs groups
* @throws ValidationException if a non recoverable error happens
* during the validation process
*/
@@ -79,6 +81,7 @@
*
* @throws IllegalArgumentException if object is null, if propertyName null, empty
* or not a valid object property
+ * or if null is passed to the varargs groups
* @throws ValidationException if a non recoverable error happens
* during the validation process
*/