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
-
column
- The location of the current cell (read-only).
-
event
- The event that initiated the action (read-only).
-
next_column
- The proposed location of the cell to traverse.
-
next_row
- The proposed location of the cell to traverse.
-
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()
-
row
- The location of the current cell (read-only).
-
JCTraverseCellInfo(Event, int, int, int, int, String)
-
event
public Event event
- The event that initiated the action (read-only).
row
public int row
- The location of the current cell (read-only).
column
public int column
- The location of the current cell (read-only).
next_row
public int next_row
- The proposed location of the cell to traverse.
next_column
public int next_column
- The proposed location of the cell to traverse.
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()
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