JRadioButton theButton = (JRadioButton) e.getItem();
String theTypeOfCalculation = theButton.getText();
this.setFrame().setComboBox().transferFocus();
if(theTypeOfCalculation.equals(this.MASS_TYPE)) {
MassComboBox theMassComboBox = new MassComboBox(this.getFrame());
theMassComboBox.generateMassComboBox();
this.setFrame().setTypeOfCalculationMethod(this.MASS_TYPE);
this.setFrame().setSelectedCalculationMethod(theMassComboBox.getMassCalculationMethodArray()[this.FIRST_INDEX]);
Compare20And500Scan.generateSplitedMoleculeFileFilePathBox(this.getFrame());
} else if(theTypeOfCalculation.equals(this.NMR_TYPE)) {
NmrComboBox theNmrComboBox = new NmrComboBox(this.getFrame());
theNmrComboBox.generateNmrCombBox();