Package com.bc.ceres.swing
Interface GridSelectionModel
- 
- All Known Implementing Classes:
- Grid.DefaultGridSelectionModel
 
 public interface GridSelectionModel
- 
- 
Nested Class SummaryNested Classes Modifier and Type Interface Description static classGridSelectionModel.Eventstatic interfaceGridSelectionModel.Listener
 - 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddListener(GridSelectionModel.Listener listener)voidaddSelectedRowIndex(int rowIndex)voidfireChange(GridSelectionModel.Event event)intgetMaxSelectedRowIndex()intgetMinSelectedRowIndex()intgetSelectedRowCount()int[]getSelectedRowIndices()booleanisRowSelected(int rowIndex)voidremoveListener(GridSelectionModel.Listener listener)voidremoveSelectedRowIndex(int rowIndex)voidsetSelectedRowIndices(int... rowIndices)
 
- 
- 
- 
Method Detail- 
getSelectedRowCountint getSelectedRowCount() 
 - 
isRowSelectedboolean isRowSelected(int rowIndex) 
 - 
getMinSelectedRowIndexint getMinSelectedRowIndex() 
 - 
getMaxSelectedRowIndexint getMaxSelectedRowIndex() 
 - 
getSelectedRowIndicesint[] getSelectedRowIndices() 
 - 
setSelectedRowIndicesvoid setSelectedRowIndices(int... rowIndices) 
 - 
addSelectedRowIndexvoid addSelectedRowIndex(int rowIndex) 
 - 
removeSelectedRowIndexvoid removeSelectedRowIndex(int rowIndex) 
 - 
addListenervoid addListener(GridSelectionModel.Listener listener) 
 - 
removeListenervoid removeListener(GridSelectionModel.Listener listener) 
 - 
fireChangevoid fireChange(GridSelectionModel.Event event) 
 
- 
 
-