JRadioButton selectButton;
{
selectButton = new JRadioButton("");
selectButton.setBounds(btnOff, yOff, FIELD_WIDTH + 1, FIELD_HEIGHT);
selectButton.setFont(new Font("Dialog", Font.PLAIN, 10));
selectButton.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent e) {
enableControls();
}
});
selectButton.setSelected(flamePartRadioButtonList.size() == 0);