JIDE 3.5.15

com.jidesoft.grid
Interface RolloverTableUtils.AutoCellAction

Enclosing class:
RolloverTableUtils

public static interface RolloverTableUtils.AutoCellAction


Method Summary
 boolean isEditable(JTable table, MouseEvent e, int row, int column)
          Check if the cell should be edited when the mouse is over.
 boolean isRollover(JTable table, MouseEvent e, int row, int column)
          Check if the cell should enter rollover mode when the mouse is over.
 

Method Detail

isEditable

boolean isEditable(JTable table,
                   MouseEvent e,
                   int row,
                   int column)
Check if the cell should be edited when the mouse is over. If true, we will call editCellAt method to start editing automatically.

Parameters:
table - the table
e - the mouse event if any. It could be null.
row - the row index
column - the column index
Returns:
true or false.

isRollover

boolean isRollover(JTable table,
                   MouseEvent e,
                   int row,
                   int column)
Check if the cell should enter rollover mode when the mouse is over. If true, we will call rolloverCellAt (only on JideTable) method to start editing automatically.

Parameters:
table - the table
e - the mouse event if any. It could be null.
row - the row index
column - the column index
Returns:
true or false.

JIDE 3.5.15