0

我有一个,我用一个数组JTable填充它。Object[][]此数组包含booleanString值,但表不显示复选框(仅truefalse)。

我的代码是:

    model =
                    new DefaultTableModel(pinFin, colNames) { 
                public Class<?> getColumnClass(int column) {
                    String type = h.getColumnsType().get(column);

                    if(type.equals("L") || type.equals("l"))
                        return Boolean.class;
                    else
                        return String.class;

                }
            };

data_table = new JTable()
    {
        public boolean isCellEditable(int row, int column) {                
            return false;               
        };
    };
data_table.setModel(model);

怎么了?

4

0 回答 0