de.kupzog.ktable
Interface KTableCellSelectionListener

All Known Implementing Classes:
KTableCellSelectionAdapter, KTableSortOnClick

public interface KTableCellSelectionListener

Author:
Friederich Kupzog

Method Summary
 void cellSelected(int col, int row, int statemask)
          Is called if a non-fixed cell is selected (gets the focus).
 void fixedCellSelected(int col, int row, int statemask)
          Is called if a fixed cell is selected (is clicked).
 

Method Detail

cellSelected

void cellSelected(int col,
                  int row,
                  int statemask)
Is called if a non-fixed cell is selected (gets the focus).

Parameters:
col - the column of the cell
row - the row of the cell
statemask - the modifier keys that where pressed when the selection happened.
See Also:
for an explanation of the term "fixed cells".

fixedCellSelected

void fixedCellSelected(int col,
                       int row,
                       int statemask)
Is called if a fixed cell is selected (is clicked).

Parameters:
col - the column of the cell
row - the row of the cell
statemask - the modifier keys that where pressed when the selection happened.
See Also:
for an explanation of the term "fixed cells".