1

テーブルの列にチェックボックスを配置しようとしています...しかし、ブール値が表示されます。セルをクリックすると、チェックボックスが表示され、すぐにブール値が表示されます...

    public class Tabela {

    private JTable tabela;
    private JCheckBox checkbox;

    public Tabela(Object[][] linhas, String[] nomeColunas) {    
        this.tabela = new JTable();
        this.tabela.setModel(new DefaultTableModel(linhas, nomeColunas));
        this.checkbox = new JCheckBox();
        this.tabela.setFillsViewportHeight(true);
        this.tabela.getColumn("Selecione").setCellEditor(
              new DefaultCellEditor(checkbox));    
    }

    public JTable getTabela() {    
        return tabela;    
    }    
}

では、私のコードの何が問題なのですか?

フォーム、テーブル、パネルを別々に作成します...

4

1 に答える 1