use of teammates.ui.template.FeedbackSessionRow in project teammates by TEAMMATES.
the class InstructorSearchPageData method createFeedbackSessionRows.
private List<FeedbackSessionRow> createFeedbackSessionRows(FeedbackResponseCommentSearchResultBundle frcSearchResultBundle) {
List<FeedbackSessionRow> rows = new ArrayList<>();
for (String fsName : frcSearchResultBundle.questions.keySet()) {
String courseId = frcSearchResultBundle.sessions.get(fsName).getCourseId();
rows.add(new FeedbackSessionRow(fsName, courseId, createQuestionTables(fsName, frcSearchResultBundle)));
}
return rows;
}
Aggregations