Guest User

Untitled

a guest
Apr 19th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. package model.presentie;
  2.  
  3. public class Presentie {
  4.  
  5. private int studentnummer;
  6. private String datum;
  7. private String startTijd;
  8. private String eindTijd;
  9. private boolean presentie;
  10.  
  11. private String les;
  12.  
  13. public Presentie(int studentnummer, String datum, String startTijd, String eindTijd, boolean presentie, String les) {
  14.  
  15. this.studentnummer = studentnummer;
  16. this.datum = datum;
  17. this.startTijd = startTijd;
  18. this.eindTijd = eindTijd;
  19. this.presentie = presentie;
  20. this.les = les;
  21.  
  22. }
  23. public int getStudentnummer() {
  24. return studentnummer;
  25. }
  26. public void setStudentnummer(int studentnummer) {
  27. this.studentnummer = studentnummer;
  28. }
  29. public String getDatum() {
  30. return datum;
  31. }
  32. public void setDatum(String datum) {
  33. this.datum = datum;
  34. }
  35.  
  36. public String getStartTijd() {
  37. return startTijd;
  38. }
  39.  
  40. public void setStartTijd(String startTijd) {
  41. this.startTijd = startTijd;
  42. }
  43.  
  44. public String getEindTijd() {
  45. return eindTijd;
  46. }
  47.  
  48. public void setEindTijd(String eindTijd) {
  49. this.eindTijd = eindTijd;
  50. }
  51.  
  52. public boolean getPresentie() {
  53. return presentie;
  54. }
  55.  
  56. public void setPresentie(boolean presentie) {
  57. this.presentie = presentie;
  58. }
  59.  
  60. public String getLes() {
  61. return les;
  62. }
  63.  
  64. public void setLes(String les) {
  65. this.les = les;
  66. }
  67. }
Add Comment
Please, Sign In to add comment