public interface SelectionAware
DataModel implementations that need to track selected rows.| Modifier and Type | Method and Description |
|---|---|
java.util.List |
getSelections()
Returns the list of selected row data objects for the model.
|
boolean |
isCurrentRowSelected()
Checks whether the row pointed to by the model's current index is selected.
|
void |
select(java.lang.Object rowData)
Selects the given row data object in the model.
|
void |
selectAll()
Selects all row data objects in the model.
|
void |
setCurrentRowSelected(boolean rowSelected)
Sets whether the row pointed to by the model's current index is selected
|
void |
setSelections(java.util.List selections)
Sets the list of selected row data objects for the model.
|
boolean isCurrentRowSelected()
void setCurrentRowSelected(boolean rowSelected)
rowSelected - true to select the current rowvoid setSelections(java.util.List selections)
selections - the list of selected row data objectsjava.util.List getSelections()
void selectAll()
void select(java.lang.Object rowData)
rowData - the row data object to select.