Ejemplo n.º 1
0
  private void printCompany() {
    try {
      Company company =
          compFacade.getCompany(); // get the company that is associated with the facade
      System.out.println(company + " num coupons = " + company.getCoupons().size());

      printCoupons(company.getCoupons(), "\t");
    } catch (Exception e) {
      logger.error("printCompany failed : " + e.toString());
    }
  }