com.extjs.gxt.ui.client.widget.selection
Interface CellSelectionModel<C extends Container<T>,T extends Component>

Type Parameters:
C - the container type
T - the component type

public interface CellSelectionModel<C extends Container<T>,T extends Component>

Defines the interface for containers which provide cell based selections.


Method Summary
 void deselect(int row, int column)
          Deselects the cell.
 void isSelected(int row, int column)
          Returns true if the cell is selected.
 void select(int row, int column)
          Selects the cell.
 

Method Detail

select

void select(int row,
            int column)
Selects the cell.

Parameters:
row - the row index
column - the column index

deselect

void deselect(int row,
              int column)
Deselects the cell.

Parameters:
row - the row index
column - the column index

isSelected

void isSelected(int row,
                int column)
Returns true if the cell is selected.

Parameters:
row - the row index
column - the column index