public DefaultValueEditorPanel()
{
singleValueMetaTableModel = new SingleValueMetaTableModel();
editor = new InstantEditingTable();
editor.setDefaultRenderer(Boolean.class, new GenericCellRenderer());
editor.setDefaultEditor(Boolean.class,
new DefaultCellEditor(new JComboBox(new Object[]{null, Boolean.TRUE, Boolean.FALSE})));
editor.setModel(singleValueMetaTableModel);
setLayout(new BorderLayout());