Methods Summary |
---|
public java.lang.Class | getColumnClass(int c)
return HSSFCell.class;
|
public int | getColumnCount()
return this.maxcol+1;
|
public int | getRowCount()
return st.getLastRowNum() + 1;
|
public java.lang.Object | getValueAt(int row, int col)
HSSFRow r = st.getRow(row);
HSSFCell c = null;
if (r != null) {
c = r.getCell((short)col);
}
return c;
|
public boolean | isCellEditable(int rowIndex, int columnIndex)
return true;
|
public void | setValueAt(java.lang.Object aValue, int rowIndex, int columnIndex)
if (aValue != null)
System.out.println("SVTableModel.setValueAt. value type = "+aValue.getClass().getName());
else System.out.println("SVTableModel.setValueAt. value type = null");
|