Search in sources :

Example 1 with FeedbackSessionRow

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;
}
Also used : ArrayList(java.util.ArrayList) FeedbackSessionRow(teammates.ui.template.FeedbackSessionRow)

Aggregations

ArrayList (java.util.ArrayList)1 FeedbackSessionRow (teammates.ui.template.FeedbackSessionRow)1