通过单击复选框禁用jtable中的Combobox

时间:2012-10-31 13:30:44

标签: java swing jtable jcombobox jcheckbox

我正在尝试在java中做一些简单的应用程序。我在jTable中渲染了一些CheckBox和ComboBox。现在我正在尝试在该项目上工作,如获取值,启用 - 禁用组合框。但我面临一些问题 我现在面对的是什么 1.
  我在jTable中渲染ComboBox和CheckBox。当我点击相应行的复选框时,我正在尝试启用ComboBox。如果我的checkBox未启用,则应禁用ComboBox 我尝试过但没有成功。

2
  我试图点击复选框,但如果我使用setSelected,则检查所有复选框但是当我试图取消选中它时,它没有。
这是我的代码供您参考。

    public class MyComboBoxRenderer extends JComboBox implements TableCellRenderer {
    public MyComboBoxRenderer(String[] items) {
        super(items);
    }

    public Component getTableCellRendererComponent(JTable table, Object value,
            boolean isSelected, boolean hasFocus, int row, int column) {
        if (isSelected) {
            setForeground(Color.BLACK);
            super.setBackground(Color.WHITE);
        } else {
            setForeground(Color.BLACK);
            setBackground(Color.WHITE);
        }

        // Select the current value
        setSelectedItem(value);
        return this;
    }
   }

    public class MyComboBoxEditor extends DefaultCellEditor {
    public MyComboBoxEditor(String[] items) {
        super(new JComboBox(items));
     }
   }

     public class MyCheckBoxRenderer extends JCheckBox implements TableCellRenderer {
     public MyCheckBoxRenderer(String[] items) {
        super();
       // setSelected(true);
     }

     public Component getTableCellRendererComponent(JTable table, Object value,
            boolean isSelected, boolean hasFocus, int row, int column) {
        if (isSelected) {
            setForeground(Color.BLACK);
            super.setBackground(Color.WHITE);
        } else {
            setForeground(Color.BLACK);
            setBackground(Color.WHITE);
        }

       // setSelected(true);
        // Select the current value

        return this;
    }
    }

    public class MyCheckBoxEditor extends DefaultCellEditor {
    public MyCheckBoxEditor() {
        super(new JCheckBox());

} 
}

给我一​​些提示或参考 在此先感谢。