/**
  * Sets the editable property of the given parameter so that it can not be changed from within the
  * GUI.
  *
  * @param parameter String
  * @param editable boolean
  */
 public void setEditable(String parameter, boolean editable) {
   table.setEditable(parameter, editable);
 }