import javax.swing.border.*;
static JPanel jSection(Component c) {
static JPanel jSection(fS title, final Component c) {
ret swing(func -> JPanel {
Border border = BorderFactory.createBevelBorder(BevelBorder
.LOWERED);
border = BorderFactory.createTitledBorder(border, title);
static JPanel jSection(S title) {
ret jSection(title, jpanel());
static JPanel jSection(LiveValue<?> lv, Component c) {
ret jLiveValueSection(lv, c);