我得到了这个类
public class FooBar {
private String foo, bar;
public FooBar(String f, String b) { this.foo = f; this.bar = b; }
public String getFoo() { return this.foo; }
}
我想把一些FooBar对象放在JComboBox中,它将显示foo var的值。为了做到这一点而不重写toString(),我必须使用自定义渲染器。这两个DefaultListCellRenderer有什么区别?
public class MyCellRenderer1 extends DefaultListCellRenderer {
@Override
public Component getListCellRendererComponent(JList list, Object value,
int index, boolean isSelected, boolean cellHasFocus)
{
if(value != null && (value instanceof FooBar))
setText(((FooBar) value).getFoo());
else
setText(value.toString());
return this;
}
}
public class MyCellRenderer2 extends DefaultListCellRenderer {
@Override
public Component getListCellRendererComponent(JList list, Object value,
int index, boolean isSelected, boolean cellHasFocus)
{
Object item = value;
if(item != null && item instanceof FooBar))
item = ((FooBar)item).getFoo();
return super.getListCellRendererComponent(list, item,
index, isSelected, cellHasFocus);
}
}
区别是…嗯…代码。他们是怎么做的。但说真的,主要的实际区别是第二个调用super
方法。此方法将执行基本的设置操作,如基于isSelected
标志设置边框和背景颜色等。
我通常总是建议调用super
方法来执行此设置,并确保列表的一致外观。
item
要么引用对象,要么引用它的字符串表示。我个人更喜欢这样写:
public class MyCellRenderer extends DefaultListCellRenderer {
@Override
public Component getListCellRendererComponent(JList list, Object item,
int index, boolean isSelected, boolean cellHasFocus)
{
super.getListCellRendererComponent(list, item,
index, isSelected, cellHasFocus);
if (item != null && (item instanceof FooBar))
{
FooBar fooBar = (FooBar)item;
String foo = fooBar.getFoo();
setText(foo);
}
return this;
}
}