Advertisement
Guest User

Untitled

a guest
Mar 19th, 2018
267
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.59 KB | None | 0 0
  1. ArrayList<Course> courseList = new ArrayList<Course>();
  2. Course course1 = new Course(UUID.randomUUID(), "Science1", 81, eMajor.CHEM);
  3. Course course2 = new Course(UUID.randomUUID(), "Science2", 91, eMajor.PHYSICS);
  4. Course course3 = new Course(UUID.randomUUID(), "Science3", 35, eMajor.CHEM);
  5. courseList.add(course1);
  6. courseList.add(course2);
  7. courseList.add(course3);
  8.  
  9. ArrayList<Semester> semesterList = new ArrayList<Semester>();
  10. Semester semester1 = new Semester(UUID.randomUUID(), new Date(2017, 7, 29), new Date(2017, 12, 14));
  11. Semester semester2 = new Semester(UUID.randomUUID(), new Date(2018, 2, 4), new Date(2018, 5, 24));
  12. semesterList.add(semester1);
  13. semesterList.add(semester2);
  14.  
  15. ArrayList<Section> sectionList = new ArrayList<Section>();
  16. Section section1 = new Section(UUID.randomUUID(), UUID.randomUUID(), UUID.randomUUID(), 251);
  17. Section section2 = new Section(UUID.randomUUID(), UUID.randomUUID(), UUID.randomUUID(), 252);
  18. Section section3 = new Section(UUID.randomUUID(), UUID.randomUUID(), UUID.randomUUID(), 253);
  19. Section section4 = new Section(UUID.randomUUID(), UUID.randomUUID(), UUID.randomUUID(), 254);
  20. Section section5 = new Section(UUID.randomUUID(), UUID.randomUUID(), UUID.randomUUID(), 255);
  21. Section section6 = new Section(UUID.randomUUID(), UUID.randomUUID(), UUID.randomUUID(), 256);
  22. sectionList.add(section1);
  23. sectionList.add(section2);
  24. sectionList.add(section3);
  25. sectionList.add(section4);
  26. sectionList.add(section5);
  27. sectionList.add(section6);
  28.  
  29. ArrayList<Student> studentList = new ArrayList<Student>();
  30. Student student1 = new Student("Spencer", "Elliot", "Frederick", new Date(1995,2,26), eMajor.CHEM, "652 Second Avenue Los Angeles California 89755", "203-985-3651", "sfrederick@udel.edu");
  31. Student student2 = new Student("Spencer", "Elliot", "Frederick", new Date(1995,2,26), eMajor.CHEM, "652 Second Avenue Los Angeles California 89755", "203-985-3651", "sfrederick@udel.edu");
  32. Student student3 = new Student("Spencer", "Elliot", "Frederick", new Date(1995,2,26), eMajor.CHEM, "652 Second Avenue Los Angeles California 89755", "203-985-3651", "sfrederick@udel.edu");
  33. Student student4 = new Student("Spencer", "Elliot", "Frederick", new Date(1995,2,26), eMajor.CHEM, "652 Second Avenue Los Angeles California 89755", "203-985-3651", "sfrederick@udel.edu");
  34. Student student5 = new Student("Spencer", "Elliot", "Frederick", new Date(1995,2,26), eMajor.CHEM, "652 Second Avenue Los Angeles California 89755", "203-985-3651", "sfrederick@udel.edu");
  35. Student student6 = new Student("Spencer", "Elliot", "Frederick", new Date(1995,2,26), eMajor.CHEM, "652 Second Avenue Los Angeles California 89755", "203-985-3651", "sfrederick@udel.edu");
  36. Student student7 = new Student("Spencer", "Elliot", "Frederick", new Date(1995,2,26), eMajor.CHEM, "652 Second Avenue Los Angeles California 89755", "203-985-3651", "sfrederick@udel.edu");
  37. Student student8 = new Student("Spencer", "Elliot", "Frederick", new Date(1995,2,26), eMajor.CHEM, "652 Second Avenue Los Angeles California 89755", "203-985-3651", "sfrederick@udel.edu");
  38. Student student9 = new Student("Spencer", "Elliot", "Frederick", new Date(1995,2,26), eMajor.CHEM, "652 Second Avenue Los Angeles California 89755", "203-985-3651", "sfrederick@udel.edu");
  39. Student student10 = new Student("Spencer", "Elliot", "Frederick", new Date(1995,2,26), eMajor.CHEM, "652 Second Avenue Los Angeles California 89755", "203-985-3651", "sfrederick@udel.edu");
  40. studentList.add(student1);
  41. studentList.add(student2);
  42. studentList.add(student3);
  43. studentList.add(student4);
  44. studentList.add(student5);
  45. studentList.add(student6);
  46. studentList.add(student7);
  47. studentList.add(student8);
  48. studentList.add(student9);
  49. studentList.add(student10);
  50.  
  51. Enrollment enrollSec1Stu1 = new Enrollment(section1.getSectionID(), student1.getStudentID());
  52. Enrollment enrollSec1Stu2 = new Enrollment(section1.getSectionID(), student2.getStudentID());
  53. Enrollment enrollSec1Stu3 = new Enrollment(section1.getSectionID(), student3.getStudentID());
  54. Enrollment enrollSec1Stu4 = new Enrollment(section1.getSectionID(), student4.getStudentID());
  55. Enrollment enrollSec1Stu5 = new Enrollment(section1.getSectionID(), student5.getStudentID());
  56. Enrollment enrollSec1Stu6 = new Enrollment(section1.getSectionID(), student6.getStudentID());
  57. Enrollment enrollSec1Stu7 = new Enrollment(section1.getSectionID(), student7.getStudentID());
  58. Enrollment enrollSec1Stu8 = new Enrollment(section1.getSectionID(), student8.getStudentID());
  59. Enrollment enrollSec1Stu9 = new Enrollment(section1.getSectionID(), student9.getStudentID());
  60. Enrollment enrollSec1Stu10 = new Enrollment(section1.getSectionID(), student10.getStudentID());
  61. enrollSec1Stu1.setGrade(100.00);
  62. enrollSec1Stu2.setGrade(100.00);
  63. enrollSec1Stu3.setGrade(100.00);
  64. enrollSec1Stu4.setGrade(100.00);
  65. enrollSec1Stu5.setGrade(100.00);
  66. enrollSec1Stu6.setGrade(100.00);
  67. enrollSec1Stu7.setGrade(100.00);
  68. enrollSec1Stu8.setGrade(100.00);
  69. enrollSec1Stu9.setGrade(100.00);
  70. enrollSec1Stu10.setGrade(100.00);
  71.  
  72. Enrollment enrollSec2Stu1 = new Enrollment(section2.getSectionID(), student1.getStudentID());
  73. Enrollment enrollSec2Stu2 = new Enrollment(section2.getSectionID(), student2.getStudentID());
  74. Enrollment enrollSec2Stu3 = new Enrollment(section2.getSectionID(), student3.getStudentID());
  75. Enrollment enrollSec2Stu4 = new Enrollment(section2.getSectionID(), student4.getStudentID());
  76. Enrollment enrollSec2Stu5 = new Enrollment(section2.getSectionID(), student5.getStudentID());
  77. Enrollment enrollSec2Stu6 = new Enrollment(section2.getSectionID(), student6.getStudentID());
  78. Enrollment enrollSec2Stu7 = new Enrollment(section2.getSectionID(), student7.getStudentID());
  79. Enrollment enrollSec2Stu8 = new Enrollment(section2.getSectionID(), student8.getStudentID());
  80. Enrollment enrollSec2Stu9 = new Enrollment(section2.getSectionID(), student9.getStudentID());
  81. Enrollment enrollSec2Stu10 = new Enrollment(section2.getSectionID(), student10.getStudentID());
  82. enrollSec2Stu1.setGrade(100.00);
  83. enrollSec2Stu2.setGrade(100.00);
  84. enrollSec2Stu3.setGrade(100.00);
  85. enrollSec2Stu4.setGrade(100.00);
  86. enrollSec2Stu5.setGrade(100.00);
  87. enrollSec2Stu6.setGrade(100.00);
  88. enrollSec2Stu7.setGrade(100.00);
  89. enrollSec2Stu8.setGrade(100.00);
  90. enrollSec2Stu9.setGrade(100.00);
  91. enrollSec2Stu10.setGrade(100.00);
  92.  
  93. Enrollment enrollSec3Stu1 = new Enrollment(section3.getSectionID(), student1.getStudentID());
  94. Enrollment enrollSec3Stu2 = new Enrollment(section3.getSectionID(), student2.getStudentID());
  95. Enrollment enrollSec3Stu3 = new Enrollment(section3.getSectionID(), student3.getStudentID());
  96. Enrollment enrollSec3Stu4 = new Enrollment(section3.getSectionID(), student4.getStudentID());
  97. Enrollment enrollSec3Stu5 = new Enrollment(section3.getSectionID(), student5.getStudentID());
  98. Enrollment enrollSec3Stu6 = new Enrollment(section3.getSectionID(), student6.getStudentID());
  99. Enrollment enrollSec3Stu7 = new Enrollment(section3.getSectionID(), student7.getStudentID());
  100. Enrollment enrollSec3Stu8 = new Enrollment(section3.getSectionID(), student8.getStudentID());
  101. Enrollment enrollSec3Stu9 = new Enrollment(section3.getSectionID(), student9.getStudentID());
  102. Enrollment enrollSec3Stu10 = new Enrollment(section3.getSectionID(), student10.getStudentID());
  103. enrollSec3Stu1.setGrade(100.00);
  104. enrollSec3Stu2.setGrade(100.00);
  105. enrollSec3Stu3.setGrade(100.00);
  106. enrollSec3Stu4.setGrade(100.00);
  107. enrollSec3Stu5.setGrade(100.00);
  108. enrollSec3Stu6.setGrade(100.00);
  109. enrollSec3Stu7.setGrade(100.00);
  110. enrollSec3Stu8.setGrade(100.00);
  111. enrollSec3Stu9.setGrade(100.00);
  112. enrollSec3Stu10.setGrade(100.00);
  113.  
  114. Enrollment enrollSec4Stu1 = new Enrollment(section4.getSectionID(), student1.getStudentID());
  115. Enrollment enrollSec4Stu2 = new Enrollment(section4.getSectionID(), student2.getStudentID());
  116. Enrollment enrollSec4Stu3 = new Enrollment(section4.getSectionID(), student3.getStudentID());
  117. Enrollment enrollSec4Stu4 = new Enrollment(section4.getSectionID(), student4.getStudentID());
  118. Enrollment enrollSec4Stu5 = new Enrollment(section4.getSectionID(), student5.getStudentID());
  119. Enrollment enrollSec4Stu6 = new Enrollment(section4.getSectionID(), student6.getStudentID());
  120. Enrollment enrollSec4Stu7 = new Enrollment(section4.getSectionID(), student7.getStudentID());
  121. Enrollment enrollSec4Stu8 = new Enrollment(section4.getSectionID(), student8.getStudentID());
  122. Enrollment enrollSec4Stu9 = new Enrollment(section4.getSectionID(), student9.getStudentID());
  123. Enrollment enrollSec4Stu10 = new Enrollment(section4.getSectionID(), student10.getStudentID());
  124. enrollSec4Stu1.setGrade(100.00);
  125. enrollSec4Stu2.setGrade(100.00);
  126. enrollSec4Stu3.setGrade(100.00);
  127. enrollSec4Stu4.setGrade(100.00);
  128. enrollSec4Stu5.setGrade(100.00);
  129. enrollSec4Stu6.setGrade(100.00);
  130. enrollSec4Stu7.setGrade(100.00);
  131. enrollSec4Stu8.setGrade(100.00);
  132. enrollSec4Stu9.setGrade(100.00);
  133. enrollSec4Stu10.setGrade(100.00);
  134.  
  135. Enrollment enrollSec5Stu1 = new Enrollment(section5.getSectionID(), student1.getStudentID());
  136. Enrollment enrollSec5Stu2 = new Enrollment(section5.getSectionID(), student2.getStudentID());
  137. Enrollment enrollSec5Stu3 = new Enrollment(section5.getSectionID(), student3.getStudentID());
  138. Enrollment enrollSec5Stu4 = new Enrollment(section5.getSectionID(), student4.getStudentID());
  139. Enrollment enrollSec5Stu5 = new Enrollment(section5.getSectionID(), student5.getStudentID());
  140. Enrollment enrollSec5Stu6 = new Enrollment(section5.getSectionID(), student6.getStudentID());
  141. Enrollment enrollSec5Stu7 = new Enrollment(section5.getSectionID(), student7.getStudentID());
  142. Enrollment enrollSec5Stu8 = new Enrollment(section5.getSectionID(), student8.getStudentID());
  143. Enrollment enrollSec5Stu9 = new Enrollment(section5.getSectionID(), student9.getStudentID());
  144. Enrollment enrollSec5Stu10 = new Enrollment(section5.getSectionID(), student10.getStudentID());
  145. enrollSec5Stu1.setGrade(100.00);
  146. enrollSec5Stu2.setGrade(100.00);
  147. enrollSec5Stu3.setGrade(100.00);
  148. enrollSec5Stu4.setGrade(100.00);
  149. enrollSec5Stu5.setGrade(100.00);
  150. enrollSec5Stu6.setGrade(100.00);
  151. enrollSec5Stu7.setGrade(100.00);
  152. enrollSec5Stu8.setGrade(100.00);
  153. enrollSec5Stu9.setGrade(100.00);
  154. enrollSec5Stu10.setGrade(100.00);
  155.  
  156. Enrollment enrollSec6Stu1 = new Enrollment(section6.getSectionID(), student1.getStudentID());
  157. Enrollment enrollSec6Stu2 = new Enrollment(section6.getSectionID(), student2.getStudentID());
  158. Enrollment enrollSec6Stu3 = new Enrollment(section6.getSectionID(), student3.getStudentID());
  159. Enrollment enrollSec6Stu4 = new Enrollment(section6.getSectionID(), student4.getStudentID());
  160. Enrollment enrollSec6Stu5 = new Enrollment(section6.getSectionID(), student5.getStudentID());
  161. Enrollment enrollSec6Stu6 = new Enrollment(section6.getSectionID(), student6.getStudentID());
  162. Enrollment enrollSec6Stu7 = new Enrollment(section6.getSectionID(), student7.getStudentID());
  163. Enrollment enrollSec6Stu8 = new Enrollment(section6.getSectionID(), student8.getStudentID());
  164. Enrollment enrollSec6Stu9 = new Enrollment(section6.getSectionID(), student10.getStudentID());
  165. Enrollment enrollSec6Stu10 = new Enrollment(section6.getSectionID(), student10.getStudentID());
  166. enrollSec6Stu1.setGrade(100.00);
  167. enrollSec6Stu2.setGrade(100.00);
  168. enrollSec6Stu3.setGrade(100.00);
  169. enrollSec6Stu4.setGrade(100.00);
  170. enrollSec6Stu5.setGrade(100.00);
  171. enrollSec6Stu6.setGrade(100.00);
  172. enrollSec6Stu7.setGrade(100.00);
  173. enrollSec6Stu8.setGrade(100.00);
  174. enrollSec6Stu9.setGrade(100.00);
  175. enrollSec6Stu10.setGrade(100.00);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement