// layouter: voidfunc(Container) or func(Container) -> Dimension // (return value is preferred size) static JPanel customLayoutPanel(fO layouter) { ret jpanel(layoutManagerFromFunction(layouter)); } static JPanel customLayoutPanel(fO layouter, fL components) { ret addAllComponents(customLayoutPanel(layouter), components); }