jbcl.model Package
com.borland.jbcl.model.MatrixViewManager
Methods
Implemented by BasicViewManager, MatrixDataSetManager, TypedViewManager
A class implementing MatrixViewManager
selects item painters and item editors for matrix data structures.
Although you can implement this interface directly, com.borland
packages provide BasicViewManager
and TypedViewManager
classes that implement it for you.
public ItemEditor getEditor(int row, int column, Object data, int state)Returns an item editor. Classes that implement
MatrixViewManager
can use some, all, or none of the passed values to select the appropriate item editor object.
Parameters:
row
column
data
state
state
as one of the variables defined in the ItemPainter
interface.
public ItemPainter getPainter(int row, int column, Object data, int state)Returns an item painter. Classes that implement
MatrixViewManager
can use some, all, or none of the passed values to select the appropriate item editor object.
Parameters:
row
column
data
state
state
as one of the variables defined in the ItemPainter
interface.