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

Class jclass.table.JCValidateCellInfo

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

public class JCValidateCellInfo
extends Object
JCValidateCellInfo is the info parameter of a VALIDATE_CELL callback.
See Also:
VALIDATE_CELL, setValidatePolicy

Variable Index

 o changed
True if the user has attempted to change the cell value (read-only).
 o column
The cell being validated (read-only).
 o datatype
DataType property of the cell (read-only).
 o doit
Must be set to false if the value is not to be committed.
 o row
The cell being validated (read-only).
 o stage
Either JCTblCallback.BEGIN (before an edit has been committed) or JCTblCallback.END (after the edit has been committed).
 o value
Data to be committed if doit is true.

Constructor Index

 o JCValidateCellInfo()

Variables

 o row
  public int row
The cell being validated (read-only).
 o column
  public int column
The cell being validated (read-only).
 o stage
  public int stage
Either JCTblCallback.BEGIN (before an edit has been committed) or JCTblCallback.END (after the edit has been committed). Stage is only JCTblCallback.END if the value has been changed interactively via a cell edit. This occurs if ValidatePolicy is set to JCTblEnum.VALIDATE_USER_EDIT) (read-only).
 o changed
  public boolean changed
True if the user has attempted to change the cell value (read-only).
 o datatype
  public int datatype
DataType property of the cell (read-only).
 o value
  public Object value
Data to be committed if doit is true.
 o doit
  public boolean doit
Must be set to false if the value is not to be committed.

Constructors

 o JCValidateCellInfo
  public JCValidateCellInfo()

All Packages  Class Hierarchy  This Package  Previous  Next  Index