Constructor. Creates all ProductBean objects and adds them
to the catalog.
ProductBean prod = new ProductBean();
prod.setId("1");
prod.setName("JavaServer Pages");
prod.setDescr("Learn how to develop a JSP based web application.");
prod.setPrice(32.95f);
catalog.addElement(prod);
prod = new ProductBean();
prod.setId("2");
prod.setName("Java Servlet Programming");
prod.setDescr("Learn how to develop a servlet based web application.");
prod.setPrice(32.95f);
catalog.addElement(prod);
prod = new ProductBean();
prod.setId("3");
prod.setName("Java In a Nutshell");
prod.setDescr("Learn the Java programming language.");
prod.setPrice(32.95f);
catalog.addElement(prod);