this.customerList.get(0).getCustomerName().setValue( "Chris" );
this.customerList.get(0).setAddress("123 4th Ave.\n San Francisco\nCA 94403");
this.customerList.get(0).setPhoneNumber("5104268845");
this.customerList.get(0).setCashBalance(45000f);
Holding holding1 = new Holding();
holding1.setStockName("Happy Duck");
holding1.setQuantity(100);
holding1.setPrice(120f);
this.customerList.get(0).getHoldingList().add(holding1);
Holding holding2 = new Holding();
holding2.setStockName("Coarse Light");
holding2.setQuantity(240);
holding2.setPrice(50f);
this.customerList.get(0).getHoldingList().add(holding2);
Holding holding3 = new Holding();
holding3.setStockName("Boston Quicken");
holding3.setQuantity(50);
holding3.setPrice(50f);
this.customerList.get(0).getHoldingList().add(holding3);
this.customerList.set(1, new Customer());
this.customerList.get(1).getCustomerName().setValue( "Natasha" );
this.customerList.get(1).setAddress("222 44th Ave.\nSan Diego\nCA 90210");
this.customerList.get(1).setPhoneNumber("3335551234");
this.customerList.get(1).setCashBalance(8000f);
Holding holding4 = new Holding();
holding4.setStockName("Boston Quicken");
holding4.setQuantity(10);
holding4.setPrice(120f);
this.customerList.get(1).getHoldingList().add(holding4);
Holding holding5 = new Holding();
holding5.setStockName("Giorgio Osmondi");
holding5.setQuantity(200);
holding5.setPrice(30f);
this.customerList.get(1).getHoldingList().add(holding5);
Holding holding6 = new Holding();
holding6.setStockName("MacDonna");
holding6.setQuantity(100);
holding6.setPrice(50f);
this.customerList.get(1).getHoldingList().add(holding6);
this.customerList.set(2, new Customer());
this.customerList.get(2).getCustomerName().setValue( "Bill" );
this.customerList.get(2).setAddress("2555 Alma St. #3\nPalo Alto\nCA 90011");
this.customerList.get(2).setPhoneNumber("4155556666");
this.customerList.get(2).setCashBalance(10000f);
Holding holding7 = new Holding();
holding7.setStockName("Paco Bella");
holding7.setQuantity(100);
holding7.setPrice(120f);
this.customerList.get(2).getHoldingList().add(holding7);
Holding holding8 = new Holding();
holding8.setStockName("Coarse Light");
holding8.setQuantity(100);
holding8.setPrice(30f);
this.customerList.get(2).getHoldingList().add(holding8);
Holding holding9 = new Holding();
holding9.setStockName("MacDonna");
holding9.setQuantity(100);
holding9.setPrice(50f);
this.customerList.get(2).getHoldingList().add(holding9);
}