public class Course
{
	
	private String title = "";
	private String instructorLN = "";
	private String instructorFN = "";
	private int numStudents = 0;
	
	//default constructor
	public Course()
	{
	}
	
	//specific constructor
	public Course(String newTitle, String newInstructorLN, 
		String newInstructorFN, int newNumStudents)
	{
		title = newTitle;
		instructorLN = newInstructorLN;
		instructorFN = newInstructorFN;
	}
	
	//mutators (setters)
	public void setTitle(String newTitle)
	{
		title = newTitle;
	}
	
	public void setInstructorLN(String newInstructorLN)
	{
		instructorLN = newInstructorLN;
	}
	
	///////////FINISH MUTATORS HERE///////////
	
	
	
	///////////FINISH MUTATORS HERE///////////
	
	//accessors (getters)
	public String getTitle()
	{
		return title;
	}
	
	public String getInstructorLN()
	{
		return instructorLN;
	}
	
	///////////FINISH ACCESSORS HERE///////////
	
	
	
	///////////FINISH ACCESSORS HERE///////////
}