Package com.vaadin.v7.ui
Interface Grid.SelectionModel.None
-
- All Superinterfaces:
ClientConnector,com.vaadin.shared.Connector,Extension,Grid.SelectionModel,Serializable
- All Known Implementing Classes:
Grid.NoSelectionModel
- Enclosing interface:
- Grid.SelectionModel
@Deprecated public static interface Grid.SelectionModel.None extends Grid.SelectionModel
Deprecated.A SelectionModel that does not allow for rows to be selected.This interface has a contract of having the same behavior, no matter how the selection model is interacted with. In other words, if the developer is unable to select something programmatically, it is not allowed for the end-user to select anything, either.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface com.vaadin.server.ClientConnector
ClientConnector.AttachEvent, ClientConnector.AttachListener, ClientConnector.ConnectorErrorEvent, ClientConnector.DetachEvent, ClientConnector.DetachListener
-
Nested classes/interfaces inherited from interface com.vaadin.v7.ui.Grid.SelectionModel
Grid.SelectionModel.HasUserSelectionAllowed, Grid.SelectionModel.Multi, Grid.SelectionModel.None, Grid.SelectionModel.Single
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description Collection<Object>getSelectedRows()Deprecated.Returns a collection of all the currently selected itemIds.booleanisSelected(Object itemId)Deprecated.Checks whether an item is selected or not.-
Methods inherited from interface com.vaadin.server.ClientConnector
addAttachListener, addDetachListener, attach, beforeClientResponse, detach, encodeState, getErrorHandler, getExtensions, getParent, getRpcManager, getStateType, getUI, handleConnectorRequest, isAttached, isConnectorEnabled, markAsDirty, markAsDirtyRecursive, removeAttachListener, removeDetachListener, removeExtension, requestRepaint, requestRepaintAll, retrievePendingRpcCalls, setErrorHandler
-
Methods inherited from interface com.vaadin.v7.ui.Grid.SelectionModel
reset, setGrid
-
-
-
-
Method Detail
-
isSelected
boolean isSelected(Object itemId)
Deprecated.Checks whether an item is selected or not.- Specified by:
isSelectedin interfaceGrid.SelectionModel- Parameters:
itemId- the item id to check for- Returns:
- always
false.
-
getSelectedRows
Collection<Object> getSelectedRows()
Deprecated.Returns a collection of all the currently selected itemIds.- Specified by:
getSelectedRowsin interfaceGrid.SelectionModel- Returns:
- always an empty collection.
-
-