I am creating a Table using a CustomTableModel which extends AbstractTableModel. I am not able to add JButton to the column using this my custom model. If I do new JButton("One") to the model .. I am seeing text "javax.swing.JButton[,0 .... ,defaultCapable=true]" instead of button. Any help Appreciated.
public class CustomModelForTable extends AbstractTableModel {
/**
*
*/
private static final long serialVersionUID = 1L;
private String[] columnNames = {"First Name",
"Last Name",
"Sport",
"# of Years",
"Vegetarian",
"Button"};
private Object[][] data = {
{"Kathy", "Smith", "Snowboarding", new Integer(5), new Boolean(false), new JButton("One")},
{"John", "Doe", "Rowing", new Integer(3), new Boolean(true), new JButton("Two")},
{"Sue", "Black", "Knitting", new Integer(2), new Boolean(false), new JButton("three")},
{"Jane", "White", "Speed reading", new Integer(20), new Boolean(true), new JButton("Four")},
{"Joe", "Brown", "Pool", new Integer(10), new Boolean(false), new JButton("Five")}
};
// # of Rows;
public int getRowCount() {
return data.length;
}
// # of Columns;
public int getColumnCount() {
return columnNames.length;
}
public Object getValueAt(int rowIndex, int columnIndex) {
return data[rowIndex][columnIndex];
}
public Class getColumnClass(int column) {
return getValueAt(0, column).getClass();
}
public boolean isCellEditable(int rowIndex, int columnIndex) {
return true;
}
public void setValueAt(Object value, int rowIndex, int columnIndex) {
if(isCellEditable(rowIndex, columnIndex)) {
data[rowIndex][columnIndex] = value;
}
}
}
EDIT: I was able to add the JButton by implementing TableCellRenderer. Thank u all.