Class jclass.table.JCEnterCellInfo
All Packages Class Hierarchy This Package Previous Next Index
Class jclass.table.JCEnterCellInfo
java.lang.Object
|
+----jclass.table.JCEnterCellInfo
- public class JCEnterCellInfo
- extends Object
JCEnterCellInfo is the info parameter of an ENTER_CELL callback.
- See Also:
- ENTER_CELL, traverse
-
column
- The location of the cell being traversed to (read-only).
-
event
- The event that initiated the action (read-only).
-
param
- The initiating action (read-only):
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()
-
row
- The location of the cell being traversed to (read-only).
-
stage
- This is either JCTblCallback.BEGIN or JCTblCallback.END (read-only).
-
text
- Currently displayed TextArea or TextField (read-only).
-
JCEnterCellInfo(Event, int, int, String)
-
row
public int row
- The location of the cell being traversed to (read-only).
column
public int column
- The location of the cell being traversed to (read-only).
stage
public int stage
- This is either JCTblCallback.BEGIN or JCTblCallback.END (read-only).
If this is the initial entry (no Text component is displayed), the
callback is only called once with a JCTblCallback.BEGIN stage.
event
public Event event
- The event that initiated the action (read-only).
param
public String param
- The initiating action (read-only):
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()
text
public TextComponent text
- Currently displayed TextArea or TextField (read-only).
This is null if no component is visible.
JCEnterCellInfo
public JCEnterCellInfo(Event ev,
int row,
int column,
String param)
All Packages Class Hierarchy This Package Previous Next Index