diff options
author | Henri Sara <hesara@vaadin.com> | 2016-09-13 12:58:48 +0300 |
---|---|---|
committer | Henri Sara <hesara@vaadin.com> | 2016-09-14 14:12:04 +0300 |
commit | 17f6c77a03130c715843ec2324eb03ffc104e079 (patch) | |
tree | eb6d5e92be1a973fa23975c648c715ec59cbb889 /shared/src | |
parent | 2a0c590bfae9b630838ae8f85637543c2a7d160f (diff) | |
download | vaadin-framework-17f6c77a03130c715843ec2324eb03ffc104e079.tar.gz vaadin-framework-17f6c77a03130c715843ec2324eb03ffc104e079.zip |
Convert ComboBox to inherit AbstractSingleSelect
ComboBoxState now inherits AbstractSingleSelectState, but still
effectively communicates its selection via RPC.
Change-Id: I47b6a73f275e0c4c63d70d2c2c8badc95a218157
Diffstat (limited to 'shared/src')
-rw-r--r-- | shared/src/main/java/com/vaadin/shared/ui/combobox/ComboBoxState.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shared/src/main/java/com/vaadin/shared/ui/combobox/ComboBoxState.java b/shared/src/main/java/com/vaadin/shared/ui/combobox/ComboBoxState.java index 7aa4cbfc72..e68d606e67 100644 --- a/shared/src/main/java/com/vaadin/shared/ui/combobox/ComboBoxState.java +++ b/shared/src/main/java/com/vaadin/shared/ui/combobox/ComboBoxState.java @@ -17,14 +17,14 @@ package com.vaadin.shared.ui.combobox; import com.vaadin.shared.annotations.DelegateToWidget; import com.vaadin.shared.annotations.NoLayout; -import com.vaadin.shared.ui.TabIndexState; +import com.vaadin.shared.ui.AbstractSingleSelectState; /** * Shared state for the ComboBox component. * * @since 7.0 */ -public class ComboBoxState extends TabIndexState { +public class ComboBoxState extends AbstractSingleSelectState { { // TODO ideally this would be v-combobox, but that would affect a lot of // themes |