JIDE 3.5.15

com.jidesoft.hssf
Interface HssfTableUtils.POICustomizer

Enclosing class:
HssfTableUtils

public static interface HssfTableUtils.POICustomizer

The POI customizer class which will be invoked after JIDE finish every settings for the cell.


Method Summary
 void customizeHeaderCell(Cell cell, JTableHeader header, int rowInHeader, int columnInHeader)
          The method to customize the cell in the table header area.
 void customizeSheet(Sheet sheet, JTable table)
          The method to customize the entire sheet for the exported table.
 void customizeTableCell(Cell cell, JTable table, int rowInTable, int columnInTable)
          The method to customize the cell in the table area.
 

Method Detail

customizeTableCell

void customizeTableCell(Cell cell,
                        JTable table,
                        int rowInTable,
                        int columnInTable)
The method to customize the cell in the table area.

Parameters:
cell - the POI cell
table - the table
rowInTable - the row index in the table
columnInTable - the column index in the table

customizeHeaderCell

void customizeHeaderCell(Cell cell,
                         JTableHeader header,
                         int rowInHeader,
                         int columnInHeader)
The method to customize the cell in the table header area.

Parameters:
cell - the POI cell
header - the table header
rowInHeader - the row index in the table header
columnInHeader - the column index in the table header

customizeSheet

void customizeSheet(Sheet sheet,
                    JTable table)
The method to customize the entire sheet for the exported table.

Parameters:
sheet - the POI sheet
table - the table

JIDE 3.5.15