Ejemplo n.º 1
0
 /**
  *
  * <!-- begin-user-doc -->
  * <!-- end-user-doc -->
  *
  * @generated NOT
  */
 public EntityGroup findIncludeGroup(String groupId) {
   EntityGroup ret = null;
   for (Iterator it = getEntityGroups().iterator(); it.hasNext(); ) {
     EntityGroup entityGroup = (EntityGroup) it.next();
     if (entityGroup.getId().equals(groupId)) {
       ret = entityGroup;
       break;
     }
   }
   return ret;
 }