/**
   * Create the ValueObject collection to hold the set of DomainObjects.
   *
   * @param map - maps DomainObjects to created ValueObjects
   * @param domainObjectSet - Set of ims.emergency.domain.objects.Tracking objects.
   */
  public static ims.emergency.vo.TrackingForSeenByHCPVoCollection
      createTrackingForSeenByHCPVoCollectionFromTracking(
          DomainObjectMap map, java.util.Set domainObjectSet) {
    ims.emergency.vo.TrackingForSeenByHCPVoCollection voList =
        new ims.emergency.vo.TrackingForSeenByHCPVoCollection();
    if (null == domainObjectSet) {
      return voList;
    }
    int rieCount = 0;
    int activeCount = 0;
    java.util.Iterator iterator = domainObjectSet.iterator();
    while (iterator.hasNext()) {
      ims.emergency.domain.objects.Tracking domainObject =
          (ims.emergency.domain.objects.Tracking) iterator.next();
      ims.emergency.vo.TrackingForSeenByHCPVo 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.emergency.domain.objects.Tracking objects.
   */
  public static ims.emergency.vo.TrackingForSeenByHCPVoCollection
      createTrackingForSeenByHCPVoCollectionFromTracking(
          DomainObjectMap map, java.util.List domainObjectList) {
    ims.emergency.vo.TrackingForSeenByHCPVoCollection voList =
        new ims.emergency.vo.TrackingForSeenByHCPVoCollection();
    if (null == domainObjectList) {
      return voList;
    }
    int rieCount = 0;
    int activeCount = 0;
    for (int i = 0; i < domainObjectList.size(); i++) {
      ims.emergency.domain.objects.Tracking domainObject =
          (ims.emergency.domain.objects.Tracking) domainObjectList.get(i);
      ims.emergency.vo.TrackingForSeenByHCPVo 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;
  }