如何将JRadioButton组与模型一起使用 [英] how to use JRadioButton groups with a model

查看:238
本文介绍了如何将JRadioButton组与模型一起使用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有没有办法将一组JRadioButtons与数据模型相关联,这样可以更容易地判断选择了哪个按钮(如果有的话)?

Is there any way to associate a group of JRadioButtons with a data model so it is easier to tell which button (if any) is selected?

理想情况下世界,我想将一组N个radiobuttons与 enum 类相关联,该类具有 NONE 值和一个值与每个单选按钮相关联。

In an ideal world, I would like to associate a group of N radiobuttons with an enum class that has a NONE value and one value associated with each radiobutton.

推荐答案

我解决了自己的问题,这不是太难,所以分享和享受:

I solved my own problem, this wasn't too hard, so share and enjoy:

import java.util.EnumMap;
import java.util.Map;
import javax.swing.JRadioButton;

public class RadioButtonGroupEnumAdapter<E extends Enum<E>> {
    final private Map<E, JRadioButton> buttonMap;

    public RadioButtonGroupEnumAdapter(Class<E> enumClass)
    {
        this.buttonMap = new EnumMap<E, JRadioButton>(enumClass);
    }
    public void importMap(Map<E, JRadioButton> map)
    {
        for (E e : map.keySet())
        {
            this.buttonMap.put(e, map.get(e));
        }
    }
    public void associate(E e, JRadioButton btn)
    {
        this.buttonMap.put(e, btn);
    }
    public E getValue()
    {
        for (E e : this.buttonMap.keySet())
        {
            JRadioButton btn = this.buttonMap.get(e);
            if (btn.isSelected())
            {
                return e;
            }
        }
        return null;
    }
    public void setValue(E e)
    {
        JRadioButton btn = (e == null) ? null : this.buttonMap.get(e);
        if (btn == null)
        {
            // the following doesn't seem efficient...
                    // but since when do we have more than say 10 radiobuttons?
            for (JRadioButton b : this.buttonMap.values())
            {
                b.setSelected(false);
            }

        }
        else
        {
            btn.setSelected(true);
        }
    }
}

这篇关于如何将JRadioButton组与模型一起使用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆