public Person createJodder() {
Address home = new Address("173 Hackers Drive", "New York", "NY", new Zipcode("123123"));
Address work = new Address("42 Computer Center", "Earth", "Milkiway", new Zipcode("42"));
Phone pagerPhone = new Phone(PhoneNumberType.PAGER, "123 555-1234");
Phone cellPhone = new Phone(PhoneNumberType.MOBILE, "770 777 5432");
Calendar cal = Calendar.getInstance();
cal.set(1988, Calendar.NOVEMBER, 23, 8, 11);
Person charlie = new Person("Igor", "Spasic", cal.getTime(), home, work);
cal = Calendar.getInstance();