aboutsummaryrefslogtreecommitdiffstats
path: root/server
diff options
context:
space:
mode:
authorJohannes Dahlström <johannesd@vaadin.com>2012-09-24 15:59:15 +0300
committerJohannes Dahlström <johannesd@vaadin.com>2012-09-24 16:02:41 +0300
commit1de86759c888bad495ae5e5b76eafff1386c77ae (patch)
treecb81694181a64e9a5bc71e0455fbda8a3caeb2a3 /server
parent94dd167211592e3a21ef80addb88fe00967a36c8 (diff)
downloadvaadin-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.java6
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