import java.util.*; public class PeopleFactory { //A Service for producing a set of people //Uncomment the TA objects and Staf when you have created those classes public static ArrayList getSomePeople() { ArrayList people = new ArrayList(); people.add(new Person("Lou")); people.add(new Student("Sue")); people.add(new Student("Anne")); people.add(new Professor("Morrison")); people.add(new Student("Frank")); people.add(new Person("Britney")); people.add(new Professor("Nel")); //people.add(new TA("Terri", "COMP1405")); //people.add(new TA("Glenn", "COMP1405")); //people.add(new Staff("Linda", "Comp Sci", "Administrator")); //people.add(new Staff("John", "Comp Sci", "Tech Support")); return people; } } //end class PeopleFactor