public interface GridCellFactory
You must implement this interface or extend one of existing factories if you like to use your own custom cells.
GridCell create(int row, int column, Object data)
row
- is a row number.column
- is a column number.data
- is data to be placed into the cell.HeaderCell create(int column, String header)
column
- is a column number.header
- is a header label.Copyright © 2008–2013. All rights reserved.