BeanColumn.create("One", "one", Boolean.class),
BeanColumn.create("Is It Two?", "two", Boolean.class),
BeanColumn.create("Three", "three", Boolean.class)
};
BeanTableModel btm = new BeanTableModel(columns);
btm.setData(data);
MasterTableSplitPane content = new MasterTableSplitPane(btm, new DemoBeanLabel(), "demoBean");
content.setOneTouchExpandable(true);
content.setOrientation(MasterTableSplitPane.VERTICAL_SPLIT);
content.getPropertyDetailPanel().setNoSelectionMessage("No bean, buddy.");