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
-
changed
- True if the user has attempted to change the cell value (read-only).
-
column
- The cell being validated (read-only).
-
datatype
- DataType property of the cell (read-only).
-
doit
- Must be set to false if the value is not to be committed.
-
row
- The cell being validated (read-only).
-
stage
- Either JCTblCallback.BEGIN (before an edit has been committed)
or JCTblCallback.END (after the edit has been committed).
-
value
- Data to be committed if doit is true.
-
JCValidateCellInfo()
-
row
public int row
- The cell being validated (read-only).
column
public int column
- The cell being validated (read-only).
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).
changed
public boolean changed
- True if the user has attempted to change the cell value (read-only).
datatype
public int datatype
- DataType property of the cell (read-only).
value
public Object value
- Data to be committed if doit is true.
doit
public boolean doit
- Must be set to false if the value is not to be committed.
JCValidateCellInfo
public JCValidateCellInfo()
All Packages Class Hierarchy This Package Previous Next Index