/**
  * Add a result element (RE or "" String)
  *
  * @param resultElement to be saved in the list
  * @param tableRowObject BagUploadConfirmInlineResultsTableRow
  */
 protected final void addResultElementToTableRow(Object resultElement, Object tableRowObject) {
   BagUploadConfirmInlineResultsTableRow tableRow =
       (BagUploadConfirmInlineResultsTableRow) tableRowObject;
   tableRow.add(resultElement);
 }
 /**
  * Set InterMine Object id for the table row
  *
  * @param id imObj
  * @param tableRowObject BagUploadConfirmInlineResultsTableRow
  */
 protected void saveObjectIdOnTableRow(Integer id, Object tableRowObject) {
   BagUploadConfirmInlineResultsTableRow tableRow =
       (BagUploadConfirmInlineResultsTableRow) tableRowObject;
   tableRow.setObjectId(id);
 }
 /**
  * Set a class name on table row
  *
  * @param className string name of the class of the object
  * @param tableRowObject BagUploadConfirmInlineResultsTableRow
  */
 protected final void setClassNameOnTableRow(String className, Object tableRowObject) {
   BagUploadConfirmInlineResultsTableRow tableRow =
       (BagUploadConfirmInlineResultsTableRow) tableRowObject;
   tableRow.setClassName(className);
 }