Hola,
Posiblemente,
Código Java:
Ver original@Override
public Component getTableCellRendererComponent
(JTable table,
Object value,
boolean isSelected,
boolean hasFocus,
int row,
int column
) { setBorder
(hasFocus
? UIManager.
getBorder("Table.focusCellHighlightBorder") : null); setBackground
(isSelected
? UIManager.
getColor("Table.selectionBackground") : UIManager.
getColor("Table.background")); setFormatterFactory
(new DefaultFormatterFactory
(new NumberFormatter
(new DecimalFormat("##,##0.00")))); setValue(valor);
return this;
}
Si el valor no es doble debe de ponerlo como null, sino te muestra el último valor que fue doble, al pintar solamente se crea una instancia.
Saludos,