CoffeeTable.Grid
Interface GridListener

All Known Implementing Classes:
GridAdapter

public interface GridListener
extends java.util.EventListener

The listener interface for receiving grid events.

Version:
2.1.3 of October 1, 1999 Copyright © 1996-1999 3Magic

Method Summary
 void gridCancelEdit(GridEvent e)
          Invoked when editing ends in a cell, and the changes are canceled.
 void gridCellsClicked(GridEvent e)
          Invoked when a Grid cell or cells are clicked.
 void gridCellsReleased(GridEvent e)
          Invoked when the mouse is released after a cell click.
 void gridCommitEdit(GridEvent e)
          Invoked when editing ends in a cell, and the changes are committed.
 void gridDoubleClicked(GridEvent e)
          Invoked when a Grid cell is double-clicked.
 void gridResizeCol(GridEvent e)
          Invoked when the user resizes a column.
 void gridResizeRow(GridEvent e)
          Invoked when the user resizes a row.
 void gridSelChanged(GridEvent e)
          Invoked when the Grid's selection changes.
 void gridSortColumn(GridEvent e)
          Invoked when the user clicks on a column header and sort on a column.
 void gridStartEdit(GridEvent e)
          Invoked when editing is activated in a cell.
 

Method Detail

gridCellsClicked

public void gridCellsClicked(GridEvent e)
Invoked when a Grid cell or cells are clicked.

gridDoubleClicked

public void gridDoubleClicked(GridEvent e)
Invoked when a Grid cell is double-clicked.

gridCellsReleased

public void gridCellsReleased(GridEvent e)
Invoked when the mouse is released after a cell click.

gridStartEdit

public void gridStartEdit(GridEvent e)
Invoked when editing is activated in a cell.

gridCommitEdit

public void gridCommitEdit(GridEvent e)
Invoked when editing ends in a cell, and the changes are committed.

gridCancelEdit

public void gridCancelEdit(GridEvent e)
Invoked when editing ends in a cell, and the changes are canceled.

gridResizeRow

public void gridResizeRow(GridEvent e)
Invoked when the user resizes a row.

gridResizeCol

public void gridResizeCol(GridEvent e)
Invoked when the user resizes a column.

gridSortColumn

public void gridSortColumn(GridEvent e)
Invoked when the user clicks on a column header and sort on a column.

gridSelChanged

public void gridSelChanged(GridEvent e)
Invoked when the Grid's selection changes.