JRadioButton enableButton = new JRadioButton("HMM");
enableButton.setBackground(c);
composerButtons.add(enableButton);
enableButton.setSelected(false);
enableButton.addActionListener(this);
//set the action command to the name of the composer class!
enableButton.setActionCommand("HMMComposer");
selectComposerPanel.add(enableButton);
JTextArea description = new JTextArea(HMMComposer.oldDesc);