use of org.olat.ims.qti21.model.InMemoryAssessmentTestSession in project OpenOLAT by OpenOLAT.
the class QTI21ItemBodyController method initForm.
@Override
protected void initForm(FormItemContainer formLayout, Controller listener, UserRequest ureq) {
ItemBodyResultFormItem questionItem = new ItemBodyResultFormItem("question", resolvedAssessmentItem);
questionItem.setItemSessionState(itemSessionController.getItemSessionState());
questionItem.setCandidateSessionContext(new TerminatedStaticCandidateSessionContext(new InMemoryAssessmentTestSession()));
questionItem.setResourceLocator(inputResourceLocator);
questionItem.setAssessmentObjectUri(assessmentObjectUri);
questionItem.setMapperUri(mapperUri);
formLayout.add(questionItem);
}
use of org.olat.ims.qti21.model.InMemoryAssessmentTestSession in project OpenOLAT by OpenOLAT.
the class UnkownItemEditorController method initForm.
@Override
protected void initForm(FormItemContainer formLayout, Controller listener, UserRequest ureq) {
setFormWarning("warning.alien.assessment.item");
convertLink = uifactory.addFormLink("convert.alien", formLayout, Link.BUTTON);
convertLink.setEnabled(canConvert());
if (formLayout instanceof FormLayoutContainer) {
FormLayoutContainer layoutCont = (FormLayoutContainer) formLayout;
String title = StringHelper.escapeHtml(item.getTitle());
layoutCont.contextPut("title", title);
String responseId = "responseBody" + CodeHelper.getRAMUniqueID();
ItemBodyResultFormItem formItem = new ItemBodyResultFormItem(responseId, resolvedAssessmentItem);
formLayout.add(responseId, formItem);
layoutCont.contextPut("responseId", responseId);
formItem.setLabel("form.imd.descr", null);
formItem.setItemSessionState(itemSessionController.getItemSessionState());
formItem.setCandidateSessionContext(new TerminatedStaticCandidateSessionContext(new InMemoryAssessmentTestSession()));
formItem.setResourceLocator(inputResourceLocator);
formItem.setAssessmentObjectUri(assessmentObjectUri);
formItem.setMapperUri(mapperUri);
}
}
use of org.olat.ims.qti21.model.InMemoryAssessmentTestSession in project OpenOLAT by OpenOLAT.
the class QTI21ServiceImpl method createInMemoryAssessmentTestSession.
@Override
public AssessmentTestSession createInMemoryAssessmentTestSession(Identity identity) {
InMemoryAssessmentTestSession candidateSession = new InMemoryAssessmentTestSession();
candidateSession.setIdentity(identity);
candidateSession.setStorage(testSessionDao.createSessionStorage(candidateSession));
return candidateSession;
}
use of org.olat.ims.qti21.model.InMemoryAssessmentTestSession in project openolat by klemens.
the class QTI21ServiceImpl method createInMemoryAssessmentTestSession.
@Override
public AssessmentTestSession createInMemoryAssessmentTestSession(Identity identity) {
InMemoryAssessmentTestSession candidateSession = new InMemoryAssessmentTestSession();
candidateSession.setIdentity(identity);
candidateSession.setStorage(testSessionDao.createSessionStorage(candidateSession));
return candidateSession;
}
use of org.olat.ims.qti21.model.InMemoryAssessmentTestSession in project openolat by klemens.
the class QTI21ItemBodyController method initForm.
@Override
protected void initForm(FormItemContainer formLayout, Controller listener, UserRequest ureq) {
ItemBodyResultFormItem questionItem = new ItemBodyResultFormItem("question", resolvedAssessmentItem);
questionItem.setItemSessionState(itemSessionController.getItemSessionState());
questionItem.setCandidateSessionContext(new TerminatedStaticCandidateSessionContext(new InMemoryAssessmentTestSession()));
questionItem.setResourceLocator(inputResourceLocator);
questionItem.setAssessmentObjectUri(assessmentObjectUri);
questionItem.setMapperUri(mapperUri);
formLayout.add(questionItem);
}
Aggregations