]> source.dussan.org Git - vaadin-framework.git/commitdiff
Binder javadoc fix (#9886)
authorAleksi Hietanen <aleksi@vaadin.com>
Tue, 29 Aug 2017 10:39:08 +0000 (13:39 +0300)
committerGitHub <noreply@github.com>
Tue, 29 Aug 2017 10:39:08 +0000 (13:39 +0300)
server/src/main/java/com/vaadin/data/Binder.java

index 7632f2b09b144a584ca77d7eb98ff9e996ac0d72..96865b13e87a91e57ee787fd90e5e6b4a9140981 100644 (file)
@@ -487,11 +487,12 @@ public class Binder<BEAN> implements Serializable {
         /**
          * Sets the field to be required. This means two things:
          * <ol>
-         * <li>the field value is validated for not being empty</li>
-         * <li>the required indicator will be displayed if the value of this
-         * field at validation time is equal to what
-         * {@link HasValue#getEmptyValue()} returns</li>
+         * <li>the required indicator will be displayed for this field</li>
+         * <li>the field value is validated for not being empty, i.e. that the
+         * field's value is not equal to what {@link HasValue#getEmptyValue()}
+         * returns</li>
          * </ol>
+         * <p>
          * For localizing the error message, use
          * {@link #asRequired(ErrorMessageProvider)}.
          *
@@ -510,10 +511,10 @@ public class Binder<BEAN> implements Serializable {
         /**
          * Sets the field to be required. This means two things:
          * <ol>
-         * <li>the field value is validated for not being empty</li>
-         * <li>the required indicator will be displayed if the value of this
-         * field at validation time is equal to what
-         * {@link HasValue#getEmptyValue()} returns</li>
+         * <li>the required indicator will be displayed for this field</li>
+         * <li>the field value is validated for not being empty, i.e. that the
+         * field's value is not equal to what {@link HasValue#getEmptyValue()}
+         * returns</li>
          * </ol>
          *
          * @see HasValue#setRequiredIndicatorVisible(boolean)