focusKindCombo) {
@Override
public Component getListCellRendererComponent(JList list,
Object value, int index, boolean isSelected,
boolean cellHasFocus) {
FocusKind mgfk = (FocusKind) value;
return super.getListCellRendererComponent(list, mgfk.name()
.toLowerCase(), index, isSelected, cellHasFocus);
}
});
focusKindCombo.setSelectedItem(FocusKind.ALL_INNER);
focusKindCombo.addActionListener(new ActionListener() {