sbool replaceTabTitleComponent(JTabbedPane tabs, S name, Component c) { if (tabs == null) false; ret swing(func -> Bool { int idx = tabs.indexOfTab(name); if (idx < 0) false; tabs.setTabComponentAt(idx, c); true; }); }