Java Reference
In-Depth Information
36. book.addContact(new ContactImpl("Alexander", "Dane", "", "Actor's Guild", new
AddressImpl()));
37. book.addContact(new ContactImpl("Fred", "Kwan", "", "Actor's Guild", new
AddressImpl()));
38.
39. System.out.println("New Contacts added. Current Contact list:");
40. System.out.println(book);
41. System.out.println();
42. System.out.println("Using the Memento object to restore the AddressBook");
43. System.out.println(" to its original state.");
44. book.setMemento(memento);
45. System.out.println("AddressBook restored. Current Contact list:");
46. System.out.println(book);
47.
48. }
49. }
 
Search WWH ::




Custom Search