package eclass.Main; import java.util.Collection; /** * * This is the window through which all of the drawing and viewing of the lecture takes place. * * @author * @version * **/ public class MainView { /** Default Constructor **/ public MainView() { } protected LectureSelector lectureSelector; protected Collection object; protected DrawingTools drawingTools; protected boolean isVisible; }