static JButton jimageButton(S imageID, O action) { JButton btn = jbutton("", action); btn.setIcon(imageIcon(imageID)); ret btn; } // button without action static JButton jimageButton(S imageID) { ret jimageButton(imageID, null); }