@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
http://i.stack.imgur.com/R4fv3.jpg

@Henery

It's not my class. I'm only implementing an interface method.

link|improve this question
6  
Please show the actual text of the error message in your post above. Does it say more than "cannot find symbol"? Every bit of information is essential. – Hovercraft Full Of Eels Nov 5 '11 at 14:44
And you can't bold posted code. – Hovercraft Full Of Eels Nov 5 '11 at 14:46
Did you make sure that your super class contain the exact method getTableCellRendererComponent with the same signature? – Bhavesh Nov 5 '11 at 14:51
1  
@Maxi Dee: can you paste your full source code ? I mean, we need to know which class you implemented or extend. – martinusadyh Nov 5 '11 at 14:53
1  
In which class this method getTableCellRendererComponent() is implemented? or at least say which class you are extending if such is a case? – Bhavesh Nov 5 '11 at 15:14
show 7 more comments
feedback

2 Answers

It's not mine that class, i'm only implementing an interface's method.

Then your parent class super is Object and has no method getTableCellRendererComponent. You either have to extend a suitable class or get along without calling non-existing methods.

link|improve this answer
Makes sense -- but then why wouldn't there be an error at the @Override annotation? The getTableCellRendererComponent method certainly doesn't override a method of Object. – Hovercraft Full Of Eels Nov 5 '11 at 15:19
1  
@HovercraftFullOfEels: The @Override shows no error, because the method exists in the implemented interface. Wasn't that a change between JDK 1.5 and 1.6? – A.H. Nov 5 '11 at 15:24
1  
If he is using Java6 @Hovercraft, the Override could be for the interface method so there is not a super method with the same name. – Gray Nov 5 '11 at 15:30
@A.H.: Aha and exactly! That's what was tripping me up. Great thoughts and 1+. – Hovercraft Full Of Eels Nov 5 '11 at 15:35
@HovercraftFullOfEels, i'm using java 7 – Maxi Dee Nov 5 '11 at 15:50
show 4 more comments
feedback

You have to extends DefaultTableCellRenderer instead of implements TableCellRenderer.


Note: DefaultTableCellRenderer its method getTableCellRendererComponent returns this. This means that it's enough to call the super.getTableCellRendererComponent(); without assigning it to a local variable. Because the local variable equals this. Maybe my explanation is too difficult: example.

public class MyTableCellRenderer extends DefaultTableCellRenderer
{

    @Override
    public Component getTableCellRendererComponent(
            JTable table, Object value, boolean isSelected,
            boolean hasFocus, int row, int col) {

        super.getTableCellRendererComponent(table, value, isSelected, hasFocus, row, col); 

        // Formatting here
        setIcon(myCustomIcon);
        setText(myCustomText);

        return this;
    }

}
link|improve this answer
i cant extend DefaultTableCellRenderer because im already extending JPanel to show the table! – Maxi Dee Nov 5 '11 at 15:52
1  
@MaxiDee: then it's obvious you can't call the super method. Solution: don't try to do this. – Hovercraft Full Of Eels Nov 5 '11 at 16:11
@HovercraftFullOfEels to sum up, then, I'll have to try painting the cells using other tecniques.. thx!! – Maxi Dee Nov 5 '11 at 16:17
@MaxiDee: No, you have to create a new class. (Which means a new .java file). Then use an instance of that class as cell renderer for your table. – Martijn Courteaux Nov 5 '11 at 16:31
@MartijnCourteaux i'll try creating a new class, see how can I make it work, then I tell you. Thanks for the tip. – Maxi Dee Nov 5 '11 at 18:00
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.