static JSplitPane jhsplit(Component l, Component r) { ret jhsplit(l, r, 0.5); } static JSplitPane jhsplit(Component l, Component r, double splitPoint, int delay) { // delay now ignored ret jhsplit(l, r, splitPoint); } static JSplitPane jhsplit(Component l, Component r, double splitPoint) { ret setSplitPaneOnFirstShowing( swingNu(JSplitPane.class, JSplitPane.HORIZONTAL_SPLIT, wrap(l), wrap(r)), splitPoint); }