1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
|
package tim.prune.load;
import javax.swing.table.AbstractTableModel;
/**
* Class to hold the table model for the file extract table
*/
public class FileExtractTableModel extends AbstractTableModel
{
private int _numRows = 0;
private Object[][] _tableData = null;
/**
* Get the column count
*/
public int getColumnCount()
{
if (_tableData == null)
return 2;
return _tableData[0].length;
}
/**
* Get the name of the column, in this case just the number
*/
public String getColumnName(int inColNum)
{
return "" + (inColNum + 1);
}
/**
* Get the row count
*/
public int getRowCount()
{
if (_tableData == null)
return 2;
return _numRows;
}
/**
* Get the value of the specified cell
*/
public Object getValueAt(int rowIndex, int columnIndex)
{
if (_tableData == null) return "";
return _tableData[rowIndex][columnIndex];
}
/**
* Make sure table data is not editable
*/
public boolean isCellEditable(int rowIndex, int columnIndex)
{
return false;
}
/**
* Update the data
* @param inData 2-dimensional Object array containing the data
*/
public void updateData(Object[][] inData)
{
_tableData = inData;
if (_tableData != null)
{
_numRows = _tableData.length;
}
fireTableStructureChanged();
}
/**
* @return Object array of data
*/
public Object[][] getData()
{
return _tableData;
}
}
|