import java.util.ArrayList; public class Professor { private String name; private String chair; private ArrayList lectures = new ArrayList(); //todo: write a constructur that already gives the student a name and a chair //todo: write getter and setter methods public void addLecture(String lecture){ //todo: fill this method } }