//newbie question
I have a JTable with an almost basic cell renderer (it colors the line differently). I've noticed my cell renderer is constantly running for the lines that are displayed on the screen, even when I don't do anything with the table.
Is that how it's supposed to be? Shouldn't it have rendered each cell once , and that's it? How can I make it stop , and only recalculate on change?
public Component getTableCellRendererComponent(JTable table, Object value,
boolean isSelected, boolean hasFocus, int row, int column) {
log.debug("Building cell : " + row + "," + column);
Component comp = super.getTableCellRendererComponent(table, value, isSelected, hasFocus, row, column);
Filter filter = (Filter)table.getModel().getValueAt(row, Column.CLASSIFICATION.getIndex());
comp.setBackground(filter.getColor());
return comp;
}