Class jclass.table.JCTraverseCellInfo
All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class jclass.table.JCTraverseCellInfo

java.lang.Object
   |
   +----jclass.table.JCTraverseCellInfo

public class JCTraverseCellInfo
extends Object
JCTraverseCellInfo is the info parameter of a TRAVERSE_CELL callback.
See Also:
TRAVERSE_CELL, traverse

Variable Index

 o column
The location of the current cell (read-only).
 o event
The event that initiated the action (read-only).
 o next_column
The proposed location of the cell to traverse.
 o next_row
The proposed location of the cell to traverse.
 o param
The traversal direction:
POINTER     Traverse to the cell user clicked on
LEFT        Traverse left to first traversable cell
RIGHT       Traverse right to first traversable cell
UP          Traverse up to first traversable cell
DOWN        Traverse down to first traversable cell
null        Initiated programmatically by call to JCTable.traverse()
 o row
The location of the current cell (read-only).

Constructor Index

 o JCTraverseCellInfo(Event, int, int, int, int, String)

Variables

 o event
  public Event event
The event that initiated the action (read-only).
 o row
  public int row
The location of the current cell (read-only).
 o column
  public int column
The location of the current cell (read-only).
 o next_row
  public int next_row
The proposed location of the cell to traverse.
 o next_column
  public int next_column
The proposed location of the cell to traverse.
 o param
  public String param
The traversal direction:
POINTER     Traverse to the cell user clicked on
LEFT        Traverse left to first traversable cell
RIGHT       Traverse right to first traversable cell
UP          Traverse up to first traversable cell
DOWN        Traverse down to first traversable cell
null        Initiated programmatically by call to JCTable.traverse()

Constructors

 o JCTraverseCellInfo
  public JCTraverseCellInfo(Event ev,
                            int row,
                            int col,
                            int next_row,
                            int next_col,
                            String param)

All Packages  Class Hierarchy  This Package  Previous  Next  Index