diff options
author | Johannes Dahlström <johannesd@vaadin.com> | 2012-09-24 15:59:15 +0300 |
---|---|---|
committer | Johannes Dahlström <johannesd@vaadin.com> | 2012-09-24 16:02:41 +0300 |
commit | 1de86759c888bad495ae5e5b76eafff1386c77ae (patch) | |
tree | cb81694181a64e9a5bc71e0455fbda8a3caeb2a3 /server | |
parent | 94dd167211592e3a21ef80addb88fe00967a36c8 (diff) | |
download | vaadin-framework-1de86759c888bad495ae5e5b76eafff1386c77ae.tar.gz vaadin-framework-1de86759c888bad495ae5e5b76eafff1386c77ae.zip |
Clarify getValidators() javadoc as per review (#9723)
Diffstat (limited to 'server')
-rw-r--r-- | server/src/com/vaadin/data/Validatable.java | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/server/src/com/vaadin/data/Validatable.java b/server/src/com/vaadin/data/Validatable.java index a91afa1f4d..0b43a8bbcb 100644 --- a/server/src/com/vaadin/data/Validatable.java +++ b/server/src/com/vaadin/data/Validatable.java @@ -67,8 +67,10 @@ public interface Validatable extends Serializable { /** * <p> * Returns a collection of all validators currently registered for the - * object. The collection may be immutable and it may not be safe to call - * <code>removeValidator</code> for this object while iterating over it. + * object. The collection may be immutable. Calling + * <code>removeValidator</code> for this Validatable while iterating over + * the collection may be unsafe (e.g. may throw + * <code>ConcurrentModificationException</code>.) * </p> * * @return A collection of validators |