static AutoCloseable tempSetButtonText(JButton btn, S text) { if (btn == null) null; S oldText = getText(btn); setText(btn, text); ret autoCloseable { setText(btn, oldText); }; }