FileDocCategorySizeDatePackage
SVRowHeader.javaAPI DocApache Poi 3.0.13025Mon Jan 01 12:39:34 GMT 2007org.apache.poi.hssf.contrib.view

SVRowHeader

public class SVRowHeader extends JList
This class presents the row header to the table.
author
Jason Height

Fields Summary
Constructors Summary
public SVRowHeader(HSSFSheet sheet, JTable table, int extraHeight)

    ListModel lm = new SVRowHeaderModel(sheet);
    this.setModel(lm);

    setFixedCellWidth(50);
    setCellRenderer(new RowHeaderRenderer(sheet, table, extraHeight));
  
Methods Summary