// Set up the substance selector box
 private void setUpList() {
   List s = system.getSubstances();
   for (Object o : s) {
     Substance sub = (Substance) o;
     substanceBoxModel.addElement(sub.getName());
   }
 }