use of org.olat.modules.lecture.model.AggregatedLectureBlocksStatistics in project OpenOLAT by OpenOLAT.
the class ParticipantLecturesOverviewController method loadModel.
private void loadModel() {
List<LectureBlockStatistics> statistics = lectureService.getParticipantLecturesStatistics(assessedIdentity);
AggregatedLectureBlocksStatistics total = lectureService.aggregatedStatistics(statistics);
tableModel.setObjects(statistics, total);
tableEl.reset(true, true, true);
}
Aggregations