/* * */ import java.util.*; public class Problem2Main{ public static void main(String[] args){ Person al = new Person("Al", "Dante"); Person sue = new Person("Sue", "Smith"); Person john = new Person("John", "Ward"); Person mary = new Person("Mary", "Franks"); al.email = "adante@hotmail.com"; mary.email = "mfranks@gmail.com"; sue.email = "suesmith1@connect.carleton.ca"; sue.enterRelationshipWith(john, RelationshipStatus.MARRIED_TO); al.enterRelationshipWith(mary, RelationshipStatus.IN_RELATIONSHIP_WITH); mary.enterRelationshipWith(null, RelationshipStatus.ITS_COMPLICATED); Person.establishFriendship(al, sue); Person.establishFriendship(al, john); Person.establishFriendship(al, mary); Person.establishFriendship(sue, john); Person.establishFriendship(john, mary); Person.dropFriendship(al, john); //Output the Person data System.out.println(""); System.out.println("People:"); System.out.println("======="); al.print(); sue.print(); john.print(); mary.print(); } } //end class