Пример #1
0
  public void count_account_stats(String hostname, Collection AccountStatisticReturnVal_objs) {
    Collection coll = AccountStatisticReturnVal_objs;
    AccountStatisticReturnVal acstat;
    Iterator tour;

    tour = coll.iterator();
    while (tour.hasNext()) {
      acstat = (AccountStatisticReturnVal) tour.next();
      count_account_stat(hostname, acstat);
    }
    return;
  }
Пример #2
0
  public void tally_accounts_bip_status(Collection accounts) {
    Account account;
    Iterator tour;

    BICServerLog.debugMsg(
        "BillRunTabulator("
            + billrun.get_billrunid()
            + ").tally_accounts_bip_status(): entered with accounts.size() = "
            + accounts.size());
    tour = accounts.iterator();
    while (tour.hasNext()) {
      account = (Account) tour.next();
      tally_account_bip_status(account);
    }
    return;
  }