From 9428b12cb47cca814adc2d68b6363ef7082dee1d Mon Sep 17 00:00:00 2001 From: Henri Sara Date: Thu, 5 Nov 2015 11:16:55 +0200 Subject: Create ComboBoxServerRpc stub (#19229) Create an empty client to server RPC implementation for ComboBox. Change-Id: I1ccce4875682b8ba2541acdc42d361edb30ca458 --- .../shared/ui/combobox/ComboBoxServerRpc.java | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 shared/src/main/java/com/vaadin/shared/ui/combobox/ComboBoxServerRpc.java (limited to 'shared') 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 { + +} -- cgit v1.2.3