Package com.vaadin.ui
Class TabSheet.TabsheetServerRpcImpl
- java.lang.Object
-
- com.vaadin.ui.TabSheet.TabsheetServerRpcImpl
-
- All Implemented Interfaces:
ServerRpc
,TabsheetServerRpc
,Serializable
- Enclosing class:
- TabSheet
protected class TabSheet.TabsheetServerRpcImpl extends Object implements TabsheetServerRpc
Client to server RPC implementation for TabSheet.- Since:
- 7.2
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
TabsheetServerRpcImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
closeTab(String key)
Tell server that a tab has been closed by the user.void
setSelected(String key)
Tell server that a tab has been selected by the user.
-
-
-
Method Detail
-
setSelected
public void setSelected(String key)
Description copied from interface:TabsheetServerRpc
Tell server that a tab has been selected by the user.- Specified by:
setSelected
in interfaceTabsheetServerRpc
- Parameters:
key
- internal key of the tab
-
closeTab
public void closeTab(String key)
Description copied from interface:TabsheetServerRpc
Tell server that a tab has been closed by the user.- Specified by:
closeTab
in interfaceTabsheetServerRpc
- Parameters:
key
- internal key of the tab
-
-