Package teammates.jdo

Examples of teammates.jdo.SubmissionDetailsForCoordinator


      }

      pointsBumpRatio = evaluations.calculatePointsBumpRatio(courseID,
          evaluationName, s.getFromStudent(), fromList);

      submissionDetailsList.add(new SubmissionDetailsForCoordinator(
          courseID, evaluationName, fromStudentName, toStudentName, s
              .getFromStudent(), s.getToStudent(),
          fromStudentComments, toStudentComments, s.getTeamName(), s
              .getPoints(), pointsBumpRatio,
          s.getJustification(), s.getCommentsToStudent()));
View Full Code Here


      }

      pointsBumpRatio = evaluations.calculatePointsBumpRatio(courseID,
          evaluationName, s.getFromStudent(), fromList);

      submissionDetailsList.add(new SubmissionDetailsForCoordinator(
          courseID, evaluationName, fromStudentName, toStudentName, s
              .getFromStudent(), s.getToStudent(),
          fromStudentComments, toStudentComments, s.getTeamName(), s
              .getPoints(), pointsBumpRatio,
          s.getJustification(), s.getCommentsToStudent()));
View Full Code Here

          fromList.add(fs);
      }

      pointsBumpRatio = evaluations.calculatePointsBumpRatio(courseID, evaluationName, s.getFromStudent(), fromList);

      submissionDetailsList.add(new SubmissionDetailsForCoordinator(courseID, evaluationName, fromStudentName, toStudentName, s.getFromStudent(), s.getToStudent(), fromStudentComments,
          toStudentComments, s.getTeamName(), s.getPoints(), pointsBumpRatio, s.getJustification(), s.getCommentsToStudent()));

    }

    resp.getWriter().write("<submissions>" + parseSubmissionDetailsForCoordinatorListToXML(submissionDetailsList).toString() + "</submissions>");
View Full Code Here

TOP

Related Classes of teammates.jdo.SubmissionDetailsForCoordinator

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.