@Override
public Component getTableCellRendererComponent(
JTable table, Object value, boolean isSelected,
boolean hasFocus, int row, int col) {
// *** here ***
Component c = super.getTableCellRendererComponent(table, value, isSelected,
hasFocus, row, col);
// Formatting here
return c;
}
I'm getting an error in the indicated line. It says "cannot find symbol" but I can't realize what the real problem is.
Updated
@martinusadyh
I'm afraid the class is too big so it doesn't allow me to paste it here.
@ Hovercraft Full Of Eels
here's the error in Netbeans
https://i.stack.imgur.com/R4fv3.jpg
@Henery
It's not my class. I'm only implementing an interface method.