List bulkActions = new ArrayList();
BulkActionGetNodeScore baGetNodeScore = new BulkActionGetNodeScore(course, currentCourseNode, getTranslator());
baGetNodeScore.setDisplayName(translate("bulk.action.getnodescore"));
bulkActions.add(baGetNodeScore);
BulkActionGetNodePassed baGetNodePassed = new BulkActionGetNodePassed(course, currentCourseNode, getTranslator());
baGetNodePassed.setDisplayName(translate("bulk.action.getnodepassed"));
bulkActions.add(baGetNodePassed);
iowc = new InOutWizardController(ureq, bulkActions, getWindowControl());
listenTo(iowc);
cmc = new CloseableModalController(getWindowControl(), translate("close"), iowc.getInitialComponent());