com.eliad.swing
Class GridEditingEvent

java.lang.Object
  |
  +--java.util.EventObject
        |
        +--com.eliad.swing.GridEditingEvent

public class GridEditingEvent
extends java.util.EventObject

An event in the course of cell editing in a grid. Events may be:

Version:
1.0 00/05/25
Author:
Patrick Mérissert-Coffinières
See Also:
Serialized Form

Fields inherited from class java.util.EventObject
source
 
Constructor Summary
GridEditingEvent(java.lang.Object source, int row, int column)
          Constructs an editing event for a given cell.
 
Method Summary
 int getColumn()
           
 int getRow()
           
 
Methods inherited from class java.util.EventObject
getSource, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

GridEditingEvent

public GridEditingEvent(java.lang.Object source,
                        int row,
                        int column)
Constructs an editing event for a given cell.
Parameters:
row - the row of the cell where the event took place.
colum - the column of the cell where the event took place.
Method Detail

getRow

public int getRow()
Returns:
the row of the cell where the event took place.

getColumn

public int getColumn()
Returns:
the column of the cell where the event took place.