Here you can find the source of createGameRadioButton(String answer, int fontSize)
public static JRadioButton createGameRadioButton(String answer, int fontSize)
//package com.java2s; //License from project: Apache License import javax.swing.JRadioButton; import java.awt.Color; import java.awt.Font; public class Main { public static JRadioButton createGameRadioButton(String answer, int fontSize) { JRadioButton btn = new JRadioButton(answer); btn.setBackground(Color.GRAY); btn.setForeground(Color.WHITE); btn.setFont(new Font(" ", Font.BOLD, fontSize)); return btn; }//from w w w . ja v a 2s. c o m }