diff options
author | Denis Anisimov <denis@vaadin.com> | 2016-10-19 13:55:20 +0300 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2016-10-21 11:52:42 +0000 |
commit | 02ed73dc9ea247b13fbef63007af6c3c53ad9423 (patch) | |
tree | 8278999063d5825809f28059a0075e8b047814b1 /server/src/main/java/com/vaadin/data/HasValue.java | |
parent | 7bb00018128637a26f05f378bbab6730ba5437ac (diff) | |
download | vaadin-framework-02ed73dc9ea247b13fbef63007af6c3c53ad9423.tar.gz vaadin-framework-02ed73dc9ea247b13fbef63007af6c3c53ad9423.zip |
Derive Listing components from HasValue.
Single select components implement HasValue<T> and mutliselect
components implements HasValue<Set<T>>.
Change-Id: Ic280a43bf021efd7425cce04e75010b6745fd698
Diffstat (limited to 'server/src/main/java/com/vaadin/data/HasValue.java')
-rw-r--r-- | server/src/main/java/com/vaadin/data/HasValue.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/server/src/main/java/com/vaadin/data/HasValue.java b/server/src/main/java/com/vaadin/data/HasValue.java index 8333c8a02a..89d8d69e66 100644 --- a/server/src/main/java/com/vaadin/data/HasValue.java +++ b/server/src/main/java/com/vaadin/data/HasValue.java @@ -116,8 +116,8 @@ public interface HasValue<V> extends Serializable { * @see Registration */ @FunctionalInterface - public interface ValueChangeListener<V> extends - EventListener<ValueChange<V>> { + public interface ValueChangeListener<V> + extends EventListener<ValueChange<V>> { @Deprecated public static final Method VALUE_CHANGE_METHOD = ReflectTools @@ -162,7 +162,7 @@ public interface HasValue<V> extends Serializable { /** * Adds a value change listener. The listener is called when the value of - * this {@code hasValue} is changed either by the user or programmatically. + * this {@code HasValue} is changed either by the user or programmatically. * * @param listener * the value change listener, not null |