/** Creates a new instance of DefaultSplitPaneLayout */
public DefaultSplitPaneModel() {
Split row = new Split();
Split col = new Split();
col.setRowLayout(false);
setChildren(new Leaf(LEFT), new Divider(), col);
col.setChildren(new Leaf(TOP), new Divider(), new Leaf(BOTTOM));
}