/**
   * The returned List will contain objects of the default type or objects that inherit from the
   * default.
   *
   * @throws TorqueException Any exceptions caught during processing will be rethrown wrapped into a
   *     TorqueException.
   */
  public static List populateObjects(List records) throws TorqueException {
    List results = new ArrayList(records.size());

    // populate the object(s)
    for (int i = 0; i < records.size(); i++) {
      Record row = (Record) records.get(i);
      results.add(AttendenceSeetPeer.row2Object(row, 1, AttendenceSeetPeer.getOMClass()));
    }
    return results;
  }