static AutoCloseable tempDisableAndRenameButton(S newName, final JButton b) { if (b == null) null; AutoCloseable temp1 = tempDisableButton(b); AutoCloseable temp2 = tempRenameButton(newName, b); ret combineAutoCloseables(temp1, temp2); }