diff options
author | Ilia Motornyi <elmot@vaadin.com> | 2018-05-09 17:07:56 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-09 17:07:56 +0300 |
commit | 1b9feecc7400756dcec4f8bb7673a5487ce9bbb2 (patch) | |
tree | 80be7deb09a831cb8b27f937537bed75b2d8b8db /server | |
parent | f6f63c79ab733487575e949104d3c74b33b9bde9 (diff) | |
download | vaadin-framework-1b9feecc7400756dcec4f8bb7673a5487ce9bbb2.tar.gz vaadin-framework-1b9feecc7400756dcec4f8bb7673a5487ce9bbb2.zip |
Fix Binder javadocs (#10907)
Fixes #10399
Diffstat (limited to 'server')
-rw-r--r-- | server/src/main/java/com/vaadin/data/Binder.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/server/src/main/java/com/vaadin/data/Binder.java b/server/src/main/java/com/vaadin/data/Binder.java index ef391d8369..3e9c8c4a13 100644 --- a/server/src/main/java/com/vaadin/data/Binder.java +++ b/server/src/main/java/com/vaadin/data/Binder.java @@ -2188,7 +2188,9 @@ public class Binder<BEAN> implements Serializable { * Adds field value change listener to all the fields in the binder. * <p> * Added listener is notified every time whenever any bound field value is - * changed. The same functionality can be achieved by adding a + * changed, i.e. the UI component value was changed, passed all the + * conversions and validations then propagated to the bound bean field. The same + * functionality can be achieved by adding a * {@link ValueChangeListener} to all fields in the {@link Binder}. * <p> * The listener is added to all fields regardless of whether the method is |