package eclass.Main;


import java.util.Collection;

/**
 *
 * 
      The OutlinePreview is linked to a Lecture, has a selectedslide, and has 
		an outline depth.
    * 
 * @author 
 * @version 
 *
 **/

public class OutlinePreview {

     /** Default Constructor **/
     public OutlinePreview() {

     }

     protected LectureElement focusedLectureElement;

     protected int outlineDepth;

     protected boolean isVisible;

}