import java.util.ArrayList; import java.util.HashMap; import java.io.BufferedReader; import java.io.FileReader; import java.io.IOException; // NOTE: there will probably only be one instance of a school object ever public class School { private ArrayList instructorList; private ArrayList courseList; private ArrayList studentList; private String name; public School(/*String file,*/ String schoolName) { this.instructorList = new ArrayList(); this.courseList = new ArrayList(); this.studentList = new ArrayList(); this.name = schoolName; //readData(file); } public void readData(String filename) { try { BufferedReader reader = new BufferedReader(new FileReader(filename)); // first line is how many instructors we want to add int inst_count = Integer.parseInt(reader.readLine()); for(int i =0;i