diff options
author | Henri Sara <hesara@vaadin.com> | 2015-11-05 11:16:55 +0200 |
---|---|---|
committer | Henri Sara <hesara@vaadin.com> | 2016-08-08 07:18:42 +0000 |
commit | 9428b12cb47cca814adc2d68b6363ef7082dee1d (patch) | |
tree | 1164ae594a4ad66370c1b518c7b3eac18ebd415e /shared | |
parent | 0e1a271cc5e465a774f0d729fc9ad38b300757de (diff) | |
download | vaadin-framework-9428b12cb47cca814adc2d68b6363ef7082dee1d.tar.gz vaadin-framework-9428b12cb47cca814adc2d68b6363ef7082dee1d.zip |
Create ComboBoxServerRpc stub (#19229)
Create an empty client to server RPC implementation for ComboBox.
Change-Id: I1ccce4875682b8ba2541acdc42d361edb30ca458
Diffstat (limited to 'shared')
-rw-r--r-- | shared/src/main/java/com/vaadin/shared/ui/combobox/ComboBoxServerRpc.java | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/shared/src/main/java/com/vaadin/shared/ui/combobox/ComboBoxServerRpc.java b/shared/src/main/java/com/vaadin/shared/ui/combobox/ComboBoxServerRpc.java new file mode 100644 index 0000000000..d140e7da6e --- /dev/null +++ b/shared/src/main/java/com/vaadin/shared/ui/combobox/ComboBoxServerRpc.java @@ -0,0 +1,27 @@ +/* + * Copyright 2000-2014 Vaadin Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may not + * use this file except in compliance with the License. You may obtain a copy of + * the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations under + * the License. + */ +package com.vaadin.shared.ui.combobox; + +import com.vaadin.shared.communication.ServerRpc; + +/** + * Client to server RPC interface for ComboBox. + * + * @since + */ +public interface ComboBoxServerRpc extends ServerRpc { + +} |