All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class jclass.table.JCEnterCellEvent

java.lang.Object
   |
   +----java.util.EventObject
           |
           +----java.awt.AWTEvent
                   |
                   +----jclass.table.TableAWTEvent
                           |
                           +----jclass.table.JCEnterCellEvent

public class JCEnterCellEvent
extends TableAWTEvent
The event posted before and after completing a traversal from one cell to another.

See Also:
traverse, JCEnterCellAdapter, JCEnterCellListener

Variable Index

 o ENTER_CELL
The id for this event.

Constructor Index

 o JCEnterCellEvent(Table, int, int, String)

Method Index

 o getColumn()
The column of the cell being traversed to.
 o getParam()
Gets a string indicating the initiating action:
 POINTER     Traverse to the cell the user clicked on
 LEFT        Traverse left to the first traversable cell
 RIGHT       Traverse right to the first traversable cell
 UP          Traverse up to the first traversable cell
 DOWN        Traverse down to the first traversable cell
 null        Initiated programatically by call to JCTable.traverse
 
 o getRow()
The row of the cell being traversed to.

Variables

 o ENTER_CELL
 public static final int ENTER_CELL
The id for this event.

Constructors

 o JCEnterCellEvent
 public JCEnterCellEvent(Table table,
                         int r,
                         int c,
                         String param)

Methods

 o getRow
 public int getRow()
The row of the cell being traversed to.

 o getColumn
 public int getColumn()
The column of the cell being traversed to.

 o getParam
 public String getParam()
Gets a string indicating the initiating action:
 POINTER     Traverse to the cell the user clicked on
 LEFT        Traverse left to the first traversable cell
 RIGHT       Traverse right to the first traversable cell
 UP          Traverse up to the first traversable cell
 DOWN        Traverse down to the first traversable cell
 null        Initiated programatically by call to JCTable.traverse
 

See Also:
traverse

All Packages  Class Hierarchy  This Package  Previous  Next  Index