static JScrollPane jScrollWithoutBorder(final Component c) { ret swing(func -> JScrollPane { JScrollPane sp = new(c); sp.setViewportBorder(null); ret sp; }); }