Class jclass.table.JCValueInfo
All Packages Class Hierarchy This Package Previous Index
Class jclass.table.JCValueInfo
java.lang.Object
|
+----jclass.table.JCValueInfo
- public class JCValueInfo
- extends Object
JCValueInfo is the info parameter of a CELL_VALUE or LABEL_VALUE callback.
- See Also:
- CELL_VALUE, LABEL_VALUE
-
column
- The location of the cell or label (read-only).
-
row
- The location of the cell or label (read-only).
-
store
- Must be set to true if the value is to be stored in the table.
-
value
- This is the value to be displayed.
-
JCValueInfo()
-
row
public int row
- The location of the cell or label (read-only).
column
public int column
- The location of the cell or label (read-only).
value
public Object value
- This is the value to be displayed. It can be an instance of a String, JCString, Integer, Long, Float, Image, Component or an Object. If it is an Object, the instance of the toString() method is called to get a text representation for display.
store
public boolean store
- Must be set to true if the value is to be stored in the table.
This is initially false; in this case, the callback is not called again
for the cell/label.
JCValueInfo
public JCValueInfo()
All Packages Class Hierarchy This Package Previous Index