diff options
author | Artur Signell <artur@vaadin.com> | 2014-12-09 16:58:01 +0200 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2014-12-10 20:56:27 +0000 |
commit | 22b20bc9fc4067a026cf08b5130bd20afa89d27e (patch) | |
tree | 4d20375ef6a8c44d0573b1d9a709155045004f51 /server/src/com/vaadin/ui/AbstractField.java | |
parent | 9107b8d8c520bd297ed7685d7a8482d1078604e9 (diff) | |
download | vaadin-framework-22b20bc9fc4067a026cf08b5130bd20afa89d27e.tar.gz vaadin-framework-22b20bc9fc4067a026cf08b5130bd20afa89d27e.zip |
Add public Field.isEmpty() and clear() (#15354)
Change-Id: I6bda7ff2a66a9ad172c899d855ca868881600be4
Diffstat (limited to 'server/src/com/vaadin/ui/AbstractField.java')
-rw-r--r-- | server/src/com/vaadin/ui/AbstractField.java | 19 |
1 files changed, 3 insertions, 16 deletions
diff --git a/server/src/com/vaadin/ui/AbstractField.java b/server/src/com/vaadin/ui/AbstractField.java index 369ad1253c..df7bbb68a2 100644 --- a/server/src/com/vaadin/ui/AbstractField.java +++ b/server/src/com/vaadin/ui/AbstractField.java @@ -1502,25 +1502,12 @@ public abstract class AbstractField<T> extends AbstractComponent implements markAsDirty(); } - /** - * Is the field empty? - * - * In general, "empty" state is same as null. As an exception, TextField - * also treats empty string as "empty". - */ - protected boolean isEmpty() { + @Override + public boolean isEmpty() { return (getFieldValue() == null); } - /** - * Clear the value of the field. - * <p> - * The field value is typically reset to the initial value of the field but - * this is not mandatory. Calling {@link #isEmpty()} on a cleared field must - * always returns true. - * - * @since - */ + @Override public void clear() { setValue(null); } |