/**
  * This method creates a TableRow object and adds it to the end of the table. The key of the row
  * is drawn from the key attribute specified in the UI designer. The image id is resolved by
  * calling customerTableGetImageId. The cells of the table are taken from a call to
  * customerTableCreateCells.
  */
 public TableRow customerTableAddRow(org.openxma.dsl.reference.dto.CustomerView customers) {
   return new TableRow(
       (TableWM) customerTable,
       customers.getOid().toString(),
       customerTableCreateCells(customers),
       customerTableGetImageFor(customers));
 }