public void importCourseData(String filename) {
try {
controlPos.clear();
courses.clear();
CourseSaxImporter importer = new CourseSaxImporter(new POFactory()); // TODO: service
importer.importFromXml(filename);
controlPos = importer.controls();
courses = importer.courses();
} catch (Exception e) {
e.printStackTrace();
}
}