static JButton jdisabledButton(S text, O action) { JButton b = newButton(text, action); setEnabled(b, false); ret b; } // button without action static JButton jdisabledButton(S text) { ret jdisabledButton(text, null); }