is it possible for the cell to be input with integer only? This is my code.
@Override
public boolean isCellEditable(int row, int col) {
return col == 3;
}
@Override
public void setValueAt(Object value, int row, int col) {
data[row][col] = value;
fireTableCellUpdated(row, col);
}