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

Variable Index

 o column
The location of the cell being traversed to (read-only).
 o event
The event that initiated the action (read-only).
 o 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()
 o row
The location of the cell being traversed to (read-only).
 o stage
This is either JCTblCallback.BEGIN or JCTblCallback.END (read-only).
 o text
Currently displayed TextArea or TextField (read-only).

Constructor Index

 o JCEnterCellInfo(Event, int, int, String)

Variables

 o row
  public int row
The location of the cell being traversed to (read-only).
 o column
  public int column
The location of the cell being traversed to (read-only).
 o 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.
 o event
  public Event event
The event that initiated the action (read-only).
 o 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()
 o text
  public TextComponent text
Currently displayed TextArea or TextField (read-only). This is null if no component is visible.

Constructors

 o JCEnterCellInfo
  public JCEnterCellInfo(Event ev,
                         int row,
                         int column,
                         String param)

All Packages  Class Hierarchy  This Package  Previous  Next  Index