com.vaadin.client.connectors.grid.
Class MultiSelectionModelConnector.MultiSelectionModel
- java.lang.Object
-
- com.vaadin.client.connectors.grid.MultiSelectionModelConnector.MultiSelectionModel
-
All Implemented Interfaces:
SelectionModel<elemental.json.JsonObject>
,SelectionModelWithSelectionColumn
Enclosing class:
protected class MultiSelectionModelConnector.MultiSelectionModel extends Object implements SelectionModel<elemental.json.JsonObject>, SelectionModelWithSelectionColumn
Client side multiselection model implementation.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface com.vaadin.client.widget.grid.selection.SelectionModel
SelectionModel.NoSelectionModel<T>
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
MultiSelectionModel()
-
Method Summary
All Methods Modifier and Type Method Description void
deselect(elemental.json.JsonObject item)
Deselects the given item.
void
deselectAll()
Deselects all currently selected items.
Renderer<Boolean>
getRenderer()
Returns a new instance of the Renderer for selection column.
boolean
isMultiSelectionAllowed()
Checks if the user is allowed to have more than on item selected.
boolean
isSelected(elemental.json.JsonObject item)
Returns whether the given item is currently selected.
boolean
isSelectionAllowed()
Checks if the user is allowed to change the selection.
void
select(elemental.json.JsonObject item)
Selects the given item.
void
setSelectionAllowed(boolean selectionAllowed)
Sets whether the user is allowed to change the selection.
-
-
-
Method Detail
-
getRenderer
public Renderer<Boolean> getRenderer()
Description copied from interface:
SelectionModelWithSelectionColumn
Returns a new instance of the Renderer for selection column.
Specified by:
getRenderer
in interfaceSelectionModelWithSelectionColumn
Returns:
selection column renderer
-
select
public void select(elemental.json.JsonObject item)
Description copied from interface:
SelectionModel
Selects the given item. If another item was already selected, that item is deselected.
Specified by:
select
in interfaceSelectionModel<elemental.json.JsonObject>
Parameters:
item
- the item to select, not null
-
deselect
public void deselect(elemental.json.JsonObject item)
Description copied from interface:
SelectionModel
Deselects the given item. If the item is not currently selected, does nothing.
Specified by:
deselect
in interfaceSelectionModel<elemental.json.JsonObject>
Parameters:
item
- the item to deselect, not null
-
deselectAll
public void deselectAll()
Description copied from interface:
SelectionModel
Deselects all currently selected items.
Specified by:
deselectAll
in interfaceSelectionModel<elemental.json.JsonObject>
-
isSelected
public boolean isSelected(elemental.json.JsonObject item)
Description copied from interface:
SelectionModel
Returns whether the given item is currently selected.
Specified by:
isSelected
in interfaceSelectionModel<elemental.json.JsonObject>
Parameters:
item
- the item to check, not nullReturns:
true
if the item is selected,false
otherwise
-
setSelectionAllowed
public void setSelectionAllowed(boolean selectionAllowed)
Description copied from interface:
SelectionModel
Sets whether the user is allowed to change the selection.
The check is done only for the client side actions. It doesn't affect selection requests sent from the server side.
Specified by:
setSelectionAllowed
in interfaceSelectionModel<elemental.json.JsonObject>
Parameters:
selectionAllowed
-true
if the user is allowed to change the selection,false
otherwise
-
isSelectionAllowed
public boolean isSelectionAllowed()
Description copied from interface:
SelectionModel
Checks if the user is allowed to change the selection.
The check is done only for the client side actions. It doesn't affect selection requests sent from the server side.
Specified by:
isSelectionAllowed
in interfaceSelectionModel<elemental.json.JsonObject>
Returns:
true
if the user is allowed to change the selection,false
otherwise
-
isMultiSelectionAllowed
public boolean isMultiSelectionAllowed()
Description copied from interface:
SelectionModel
Checks if the user is allowed to have more than on item selected.
Specified by:
isMultiSelectionAllowed
in interfaceSelectionModel<elemental.json.JsonObject>
Returns:
true
if the user is allowed to select multiple items,false
otherwise
-
-