static JButton jImageAndTextButton(S imageID, S text, O action) { JButton btn = jImageButton(imageID, action); btn.setVerticalTextPosition(SwingConstants.BOTTOM); btn.setHorizontalTextPosition(SwingConstants.CENTER); ret setText(btn, text); } // button without action static JButton jImageAndTextButton(S imageID, S text) { ret jImageAndTextButton(imageID, text, null); }