OOP2

StudyPathController.java

1
/**
2
 * StudyPathController - Supposed to be the controller of StudyPath and StudyPathView.
3
 * @see StudyPath
4
 * @see StudyPathView
5
 * @author Maarten Vangeneugden - 1438256
6
 */
7
public class StudyPathController extends Controller {
8
	public StudyPathController(Observable model, Observer view) {
9
		super(model, view);
10
	}
11
12
	// Supposed to go here: Functions that are called by the actionlisteners of the View. That way the controller can make the requested changes in the model.
13
	
14
	
15
}
16