gpt4 book ai didi

java - 如何为 JComboBox 定义通用 "POJO"ListCellRenderer

转载 作者:行者123 更新时间:2023-12-02 04:23:32 25 4
gpt4 key购买 nike

如果我有一个 JComboBox,根据平台的不同,它呈现单元格的方式是不同的。我对它渲染字符串的方式很满意。我想要实现的是定义一个从 Pojos 映射到 Strings 的 ListCellRenderer,以便我可以用任何对象填充 JComboBox,但显示除 toString 方法的内容之外的其他内容。

我的最佳尝试(在运行时有效,但在编译时有警告)如下

import java.awt.Component;

import javax.swing.DefaultListCellRenderer;
import javax.swing.JList;
import javax.swing.ListCellRenderer;

@SuppressWarnings("unchecked")
public class PojoListRenderer<T> implements ListCellRenderer<Object>
{
public static interface Extractor<T>
{
public String extract(T fromThis);
}

private Extractor<T> myExtractor;
private ListCellRenderer renderer;

public PojoListRenderer(Extractor<T> extractor, ListCellRenderer parent)
{
myExtractor = extractor;
renderer = parent;
}
public PojoListRenderer(Extractor<T> extractor)
{
this(extractor, new DefaultListCellRenderer());
}

@Override
public Component getListCellRendererComponent(JList<?> list,
Object value, int index, boolean isSelected, boolean cellHasFocus)
{
String s = myExtractor.extract((T)value);
return renderer.getListCellRendererComponent(list, s, index, isSelected, cellHasFocus);
}
}

然后可以按如下方式使用:

//Assume a class called Notification with methods name() and severity()
JComboBox myNotificationBox = ...;
myNotificationBox.setRenderer
(
new PojoListRenderer<Notification>
(
(notification) -> notification.name() + "/" + notifiation.severity(),
myNotification.getRenderer()
)
);

这种方法很好,因为它意味着我可以获得 ComboBox 的默认 ListCellRenderer 的所有突出显示/选择等,但我可以使用 ComboBox 作为域对象的规范持有者,并且仍然可以很好地显示它们。

缺点是上面的内容显然不是类型安全的。

所以我的问题是:

  1. 这是否是解决这个问题的明智方法(对我来说似乎是这样)
  2. 我是否错过了 Swing 库中一些明显的功能(因为这看起来是非常明显的功能)
  3. 谁能建议如何保留上述功能,同时消除编译器警告(并使上述类型安全)

最佳答案

so that I can populate the JComboBox with any objects, but display something other than the contents of the toString method.

您可以查看Combo Box With Custom Renderer 。这是我处理 POJO 的方法。它确实支持类型安全。

可能不完全是您想要的,但它也解决了您的自定义渲染器存在的问题,即会破坏默认的键选择功能。

关于java - 如何为 JComboBox 定义通用 "POJO"ListCellRenderer,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32468579/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com