theMassComboBox.setMaximumRowCount(this.MAXIMUM_ROW_COUNT);
theMassComboBox.setMaximumSize(new Dimension(Integer.MAX_VALUE, this.MAXIMUM_COMBO_BOX_HEIGHT));
this.setFrame().setComboBox().removeAll();
this.setFrame().setComboBox().add(theMassComboBox);
theMassComboBox.setSelectedIndex(this.FIRST_INDEX);
theMassComboBox.addItemListener(new ComboBoxActionListener(this.getFrame()));
theMassComboBox.setName("Mass");
theMassComboBox.setSize(Integer.MAX_VALUE, this.MAXIMUM_COMBO_BOX_HEIGHT);
}