Guest User

Untitled

a guest
Mar 22nd, 2018
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. package com.alueducation.cs.ooad;
  2.  
  3. import java.util.Set;
  4.  
  5. class Classroom {
  6.  
  7. Facilitator facilitator;
  8. private Set<Student> students;
  9.  
  10. Classroom(Facilitator facilitator, Set<Student> students){
  11. this.facilitator = facilitator;
  12. this.students = students;
  13. }
  14.  
  15. /**
  16. * @return the facilitator
  17. */
  18. public Facilitator getFacilitator() {
  19. return facilitator;
  20. }
  21.  
  22. /**
  23. * @return the students
  24. */
  25. public Set<Student> getStudents() {
  26. return students;
  27. }
  28. }
Add Comment
Please, Sign In to add comment