use of org.olat.ims.qti21.ui.AssessmentResultController in project openolat by klemens.
the class AssessmentResultController method doPrint.
private void doPrint(UserRequest ureq) {
ControllerCreator creator = (uureq, wwControl) -> {
AssessmentResultController printViewCtrl = new AssessmentResultController(uureq, wwControl, assessedIdentity, anonym, candidateSession, fUnzippedDirRoot, mapperUri, submissionMapperUri, options, false, true, false);
printViewCtrl.flc.contextPut("printCommand", Boolean.TRUE);
listenTo(printViewCtrl);
return printViewCtrl;
};
openInNewBrowserWindow(ureq, creator);
}
Aggregations