Example #1
0
 /**
  * Select the object in the advanced table composition.
  *
  * @param eefWidgetIdKey widget key
  * @param qualifiedIdentifier identifier of the PEE
  * @param selected object to select
  */
 public void selectInTableWithId(
     String eefWidgetIdKey, String qualifiedIdentifier, EObject selected) {
   final SWTBotTable table = tableWithId(eefWidgetIdKey, qualifiedIdentifier);
   final SWTBotTableItem tableItem = getTableItem(table, selected);
   assertNotNull("No table item is found.", tableItem);
   tableItem.select();
 }