有没有办法将一组 JRadioButtons 与数据模型相关联,以便更容易判断选择了哪个按钮(如果有)?
在理想的世界中,我想将一组 N 个单选按钮与一个enum
类相关联,该类具有一个NONE
值和一个与每个单选按钮相关联的值。
有没有办法将一组 JRadioButtons 与数据模型相关联,以便更容易判断选择了哪个按钮(如果有)?
在理想的世界中,我想将一组 N 个单选按钮与一个enum
类相关联,该类具有一个NONE
值和一个与每个单选按钮相关联的值。
我解决了自己的问题,这并不难,所以分享和享受:
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);
}
}
}
是否javax.swing.ButtonGroup
符合您的要求
http://java.sun.com/javase/6/docs/api/javax/swing/ButtonGroup.html