static JInternalFrame addInternalFrame(JDesktopPane desktop, S title, int x, int y, int w, int h) { ret swing(func -> JInternalFrame { JInternalFrame frame; desktop.add(setBounds(x, y, w, h, frame = jInternalFrame(title))); frame.moveToFront(); ret frame; }); }