/**
   * Create the ValueObject collection to hold the set of DomainObjects.
   *
   * @param map - maps DomainObjects to created ValueObjects
   * @param domainObjectSet - Set of ims.ocrr.orderingresults.domain.objects.SpecimenWorkListItem
   *     objects.
   */
  public static ims.ocrr.vo.SpecimenWorkListItemListVoCollection
      createSpecimenWorkListItemListVoCollectionFromSpecimenWorkListItem(
          DomainObjectMap map, java.util.Set domainObjectSet) {
    ims.ocrr.vo.SpecimenWorkListItemListVoCollection voList =
        new ims.ocrr.vo.SpecimenWorkListItemListVoCollection();
    if (null == domainObjectSet) {
      return voList;
    }
    int rieCount = 0;
    int activeCount = 0;
    java.util.Iterator iterator = domainObjectSet.iterator();
    while (iterator.hasNext()) {
      ims.ocrr.orderingresults.domain.objects.SpecimenWorkListItem domainObject =
          (ims.ocrr.orderingresults.domain.objects.SpecimenWorkListItem) iterator.next();
      ims.ocrr.vo.SpecimenWorkListItemListVo vo = create(map, domainObject);

      if (vo != null) voList.add(vo);

      if (domainObject != null) {
        if (domainObject.getIsRIE() != null && domainObject.getIsRIE().booleanValue() == true)
          rieCount++;
        else activeCount++;
      }
    }
    voList.setRieCount(rieCount);
    voList.setActiveCount(activeCount);
    return voList;
  }
  /**
   * Create the ValueObject collection to hold the list of DomainObjects.
   *
   * @param map - maps DomainObjects to created ValueObjects
   * @param domainObjectList - List of ims.ocrr.orderingresults.domain.objects.SpecimenWorkListItem
   *     objects.
   */
  public static ims.ocrr.vo.SpecimenWorkListItemListVoCollection
      createSpecimenWorkListItemListVoCollectionFromSpecimenWorkListItem(
          DomainObjectMap map, java.util.List domainObjectList) {
    ims.ocrr.vo.SpecimenWorkListItemListVoCollection voList =
        new ims.ocrr.vo.SpecimenWorkListItemListVoCollection();
    if (null == domainObjectList) {
      return voList;
    }
    int rieCount = 0;
    int activeCount = 0;
    for (int i = 0; i < domainObjectList.size(); i++) {
      ims.ocrr.orderingresults.domain.objects.SpecimenWorkListItem domainObject =
          (ims.ocrr.orderingresults.domain.objects.SpecimenWorkListItem) domainObjectList.get(i);
      ims.ocrr.vo.SpecimenWorkListItemListVo vo = create(map, domainObject);

      if (vo != null) voList.add(vo);

      if (domainObject != null) {
        if (domainObject.getIsRIE() != null && domainObject.getIsRIE().booleanValue() == true)
          rieCount++;
        else activeCount++;
      }
    }

    voList.setRieCount(rieCount);
    voList.setActiveCount(activeCount);
    return voList;
  }