package database;

/**
 * This class holds database information regarding a department. Each department will have a longName, such
 * as 'Computer Science', and a shortName, such as 'CSC'. Many other classes inside the database package
 * will link back to the appropriate department.
 * @author jroll
 *
 */
public abstract class Department extends DataItem {
	
	public String longName;
        public String shortName;
	
	public enum College {ENGINEERING, SCIENCE, CREATIVE_ARTS};
	College college;

}