我有一个包含类Operation的实例的JList,其中包含一个布尔标志“enabled”。当此标志设置为false时,我希望JList中的Operation实例的文本表示设置为TextAttribute.STRIKETHROUGH_ON。
为实现这一目标,我实现了一个自定义ListCellRenderer,它扩展了DefaultListCellRenderer:
package com.pumdashboard.ui.configurator;
import java.awt.Component;
import java.awt.font.TextAttribute;
import java.util.HashMap;
import java.util.Map;
import javax.swing.DefaultListCellRenderer;
import javax.swing.JLabel;
import javax.swing.JList;
import com.pumdashboard.data.Operation;
@SuppressWarnings ("serial")
public class OperationsListCellRenderer extends DefaultListCellRenderer {
@SuppressWarnings ("rawtypes")
@Override
public Component getListCellRendererComponent (final JList list, final Object value, final int index, final boolean isSelected, final boolean cellHasFocus) {
final JLabel cmpnnt = (JLabel) super.getListCellRendererComponent(list, value, index, isSelected, cellHasFocus);
if (value == null) {
return cmpnnt;
}
final Operation op = (Operation) value;
if (!op.get_enabled()) {
final Map<TextAttribute, Object> attr = new HashMap<TextAttribute, Object>(list.getFont().getAttributes());
attr.put(TextAttribute.STRIKETHROUGH, TextAttribute.STRIKETHROUGH_ON);
cmpnnt.setFont(list.getFont().deriveFont(attr));
}
return cmpnnt;
}
}
这个实现在运行JDK 1.7设置为1.5模式的eclipse 4.2中的Windows 7上运行正常。但是,当我尝试在带有JRE 1.5的Solaris 10上运行完全相同的代码时,不会出现删除线。
非常感谢任何帮助。