J'ai configuré un rendu de cellules personnalisé dans JTable et cela fonctionne mais au lieu d'un "x" visible sur les boutons qui sont des cellules de tableau, je vois "..." (trois points). Qu'est-ce que j'ai raté ?
/***************************************************************************
* Listener reagujacy na dodanie nowej wartosci
**************************************************************************/
private static class ButtonRenderer extends JButton implements
TableCellRenderer {
/***********************************************************************
* Konstruktor
**********************************************************************/
public ButtonRenderer() {
super("x");
}
/***********************************************************************
* @see TableCellRenderer#getTableCellRendererComponent(JTable, Object,
* boolean, boolean, int, int)
**********************************************************************/
public Component getTableCellRendererComponent(JTable table,
Object value, boolean isSelected, boolean hasFocus, int row,
int column) {
return this;
}
}