package lectures.inheritance.abstract_classes;
import util.annotations.WebDocuments;

@WebDocuments({"Lectures/InheritanceAbstractClasses.pptx", "Lectures/InheritanceAbstractClasses.pdf", "Videos/InheritanceAbstractClasses.avi"})
public class AnotherFreshmanSeminar  implements FreshmanSeminar {
    
    protected String title, dept;

    public AnotherFreshmanSeminar (String theTitle, String theDept) {
        title = theTitle;
        dept = theDept; 
    }
    public int getNumber() {
        /*
         * Press F3 (Open Declaration) to see where SEMINAR_NUMBER is declared
         */
        return SEMINAR_NUMBER; 
    }
    public String getTitle() {
        return title;
    }

    public String getDepartment() {
        return dept;
    }
}