diff options
author | Ahmed Ashour <asashour@yahoo.com> | 2017-09-22 06:57:35 +0200 |
---|---|---|
committer | Henri Sara <henri.sara@gmail.com> | 2017-09-22 07:57:35 +0300 |
commit | 1b8d507e5b3b14a57b4527ba1af1c074b99fcca2 (patch) | |
tree | 40b7bad47f26e03c0ed2364ebbb134719c2c0e22 /compatibility-server/src/main/java/com/vaadin/v7/ui/AbstractField.java | |
parent | d542679321184eeacaeee7e39cd35755f3af7328 (diff) | |
download | vaadin-framework-1b8d507e5b3b14a57b4527ba1af1c074b99fcca2.tar.gz vaadin-framework-1b8d507e5b3b14a57b4527ba1af1c074b99fcca2.zip |
Replace iff with if in javadoc (#10056)
Diffstat (limited to 'compatibility-server/src/main/java/com/vaadin/v7/ui/AbstractField.java')
-rw-r--r-- | compatibility-server/src/main/java/com/vaadin/v7/ui/AbstractField.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/compatibility-server/src/main/java/com/vaadin/v7/ui/AbstractField.java b/compatibility-server/src/main/java/com/vaadin/v7/ui/AbstractField.java index f5867ad0e3..99bc5a1f77 100644 --- a/compatibility-server/src/main/java/com/vaadin/v7/ui/AbstractField.java +++ b/compatibility-server/src/main/java/com/vaadin/v7/ui/AbstractField.java @@ -436,7 +436,7 @@ public abstract class AbstractField<T> extends AbstractLegacyComponent * @param newFieldValue * the New value of the field. * @param repaintIsNotNeeded - * True iff caller is sure that repaint is not needed. + * True if caller is sure that repaint is not needed. * @throws Property.ReadOnlyException * @throws Converter.ConversionException * @throws InvalidValueException @@ -452,9 +452,9 @@ public abstract class AbstractField<T> extends AbstractLegacyComponent * @param newFieldValue * the New value of the field. * @param repaintIsNotNeeded - * True iff caller is sure that repaint is not needed. + * True if caller is sure that repaint is not needed. * @param ignoreReadOnly - * True iff if the read-only check should be ignored + * True if the read-only check should be ignored * @throws Property.ReadOnlyException * @throws Converter.ConversionException * @throws InvalidValueException @@ -996,7 +996,7 @@ public abstract class AbstractField<T> extends AbstractLegacyComponent * Fields allow invalid values by default. In most cases this is wanted, * because the field otherwise visually forget the user input immediately. * - * @return true iff the invalid values are allowed. + * @return true if invalid values are allowed. * @see Validatable#isInvalidAllowed() */ @Override |