aboutsummaryrefslogtreecommitdiffstats
path: root/server/src/com/vaadin/ui/Field.java
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2014-12-09 16:58:01 +0200
committerVaadin Code Review <review@vaadin.com>2014-12-10 20:56:27 +0000
commit22b20bc9fc4067a026cf08b5130bd20afa89d27e (patch)
tree4d20375ef6a8c44d0573b1d9a709155045004f51 /server/src/com/vaadin/ui/Field.java
parent9107b8d8c520bd297ed7685d7a8482d1078604e9 (diff)
downloadvaadin-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/Field.java')
-rw-r--r--server/src/com/vaadin/ui/Field.java22
1 files changed, 22 insertions, 0 deletions
diff --git a/server/src/com/vaadin/ui/Field.java b/server/src/com/vaadin/ui/Field.java
index f191e1bdd7..6dee4de6cb 100644
--- a/server/src/com/vaadin/ui/Field.java
+++ b/server/src/com/vaadin/ui/Field.java
@@ -113,4 +113,26 @@ public interface Field<T> extends Component, BufferedValidatable, Property<T>,
return (Property) getSource();
}
}
+
+ /**
+ * Is the field empty?
+ *
+ * In general, "empty" state is same as null. As an exception, TextField
+ * also treats empty string as "empty".
+ *
+ * @since
+ * @return true if the field is empty, false otherwise
+ */
+ public boolean isEmpty();
+
+ /**
+ * Clears the value of the field.
+ * <p>
+ * The field value is typically reset to the initial value of the field.
+ * Calling {@link #isEmpty()} on a cleared field must always returns true.
+ *
+ * @since
+ */
+ public void clear();
+
}