/test/src/teammates/testing/object/Submission.java

https://code.google.com/p/teammatespes/ · Java · 143 lines · 107 code · 36 blank · 0 comment · 0 complexity · 1ea2e919b3f702622cb31885deca305f MD5 · raw file

  1. package teammates.testing.object;
  2. import com.google.gson.annotations.SerializedName;
  3. public class Submission
  4. {
  5. @SuppressWarnings("unused")
  6. private Long id;
  7. String fromStudentName;
  8. String toStudentName;
  9. String fromStudent;
  10. String toStudent;
  11. @SerializedName("courseid")
  12. String courseID;
  13. @SerializedName("evaluationname")
  14. String evaluationName;
  15. int points;
  16. String justification;
  17. String commentsToStudent;
  18. @SerializedName("teamname")
  19. String teamName;
  20. public Submission(String fromStudent, String toStudent, String fromName, String toName, String courseID, String evaluationName, String teamName)
  21. {
  22. this.setFromStudent(fromStudent);
  23. this.setToStudent(toStudent);
  24. this.setCourseID(courseID);
  25. this.setEvaluationName(evaluationName);
  26. this.setTeamName(teamName);
  27. this.setFromStudentName(fromName);
  28. this.setToStudentName(toName);
  29. this.setJustification("");
  30. this.setCommentsToStudent("");
  31. this.points = -999;
  32. }
  33. public Submission(String fromStudent, String toStudent, String fromName, String toName, String courseID, String evaluationName,
  34. String teamName, int points, String justification, String commentsToStudent)
  35. {
  36. this.setFromStudent(fromStudent);
  37. this.setToStudent(toStudent);
  38. this.setCourseID(courseID);
  39. this.setEvaluationName(evaluationName);
  40. this.setTeamName(teamName);
  41. this.setFromStudentName(fromName);
  42. this.setToStudentName(toName);
  43. this.setPoints(points);
  44. this.setJustification(justification);
  45. this.setCommentsToStudent(commentsToStudent);
  46. }
  47. public String getFromStudent() {
  48. return fromStudent;
  49. }
  50. public void setFromStudent(String fromStudent) {
  51. this.fromStudent = fromStudent;
  52. }
  53. public String getToStudent() {
  54. return toStudent;
  55. }
  56. public void setToStudent(String toStudent) {
  57. this.toStudent = toStudent;
  58. }
  59. public void setFromStudentName(String fromName) {
  60. this.fromStudentName = fromName;
  61. }
  62. public String getFromStudentName() {
  63. return this.fromStudentName;
  64. }
  65. public void setToStudentName(String toName) {
  66. this.toStudentName = toName;
  67. }
  68. public String getToStudentName() {
  69. return this.toStudentName;
  70. }
  71. public String getCourseID() {
  72. return courseID;
  73. }
  74. public void setCourseID(String courseID) {
  75. this.courseID = courseID;
  76. }
  77. public String getEvaluationName() {
  78. return evaluationName;
  79. }
  80. public void setEvaluationName(String evaluationName) {
  81. this.evaluationName = evaluationName;
  82. }
  83. public int getPoints() {
  84. return points;
  85. }
  86. public void setPoints(int points) {
  87. this.points = points;
  88. }
  89. public String getJustification() {
  90. return justification;
  91. }
  92. public void setJustification(String justification) {
  93. this.justification = justification;
  94. }
  95. public String getCommentsToStudent() {
  96. return commentsToStudent;
  97. }
  98. public void setCommentsToStudent(String commentsToStudent) {
  99. this.commentsToStudent = commentsToStudent;
  100. }
  101. public String getTeamName() {
  102. return teamName;
  103. }
  104. public void setTeamName(String teamName) {
  105. this.teamName = teamName;
  106. }
  107. }