4950515253545556
* @return the HUD style button. * @see HudButtonUI */ public static JButton createHudButton(String buttonText) { JButton button = new JButton(buttonText); button.setUI(new HudButtonUI()); return button; }