Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to create a custom ListCellRenderer in order to give different foreground colors in each line, depending on the input of the jList. I am not an expert or anything, but I really can't figure this out.

I get a casting error:

Exception in thread "main" java.lang.ClassCastException: java.lang.String cannot be cast to app.CustomObject

Thanks for your time.

Here is the SSCCE:

import java.awt.Color;
import java.awt.Component;
import javax.swing.DefaultListCellRenderer;
import javax.swing.DefaultListModel;
import javax.swing.JFrame;
import javax.swing.JList;
import javax.swing.ListSelectionModel;

public class MyListCellRenderer extends DefaultListCellRenderer
{

    static Color color;
    static ListSelectionModel listSelectionModel;
    static JList jList1;
    static DefaultListModel listModel = new DefaultListModel();
    static JFrame frame;

    @Override
    public Component getListCellRendererComponent(JList list,
            Object value, int index, boolean isSelected,
            boolean cellHasFocus)
    {
        super.getListCellRendererComponent(list,
                value,
                index,
                isSelected,
                cellHasFocus);

        if (value != null)
        {
            CustomObject o = (CustomObject) value;
            setText(o.getData());
            setForeground(o.getColor());
        }
        return this;
    }

    public static void main(String[] args)
    {


        jList1 = new javax.swing.JList();
        listSelectionModel = jList1.getSelectionModel();
        listSelectionModel.addListSelectionListener(
                new app.ListSelectionHandler());
        jList1.setCellRenderer(new app.MyListRenderer());
        jList1.setModel(listModel);
        listModel.addElement("Option1");

        frame = new JFrame();
        frame.add(jList1);
        frame.pack();
        frame.setVisible(true);
    }
}

class CustomObject
{

    String s;
    Color color;

    public CustomObject(Color color, String s)
    {
        this.s = s;
        this.color = color;
    }

    public Color getColor()
    {
        return color;
    }

    public String getData()
    {
        return s;
    }

    @Override
    public String toString()
    {
        return s + color.getRGB();
    }
}
share|improve this question
I don't think this code is self-contained. – Kevin Bourrillion Jun 24 '10 at 6:59
I am pretty sure it is :P – devilwontcry Jun 25 '10 at 17:40

1 Answer

up vote 1 down vote accepted
CustomObject o = (CustomObject) value;

value here appears to be a plain String ("Option1" maybe?), not a CustomObject.

If you want it to be a CustomObject, you might try something like this in your main:

listModel.addElement(new CustomObject(Color.BLUE, "Option1"));
share|improve this answer
Argh.... Man thank you very much! It was so obvious, yet somehow I couln not see it. Cheers! – devilwontcry Jun 24 '10 at 2:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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