Advertisement
Guest User

Untitled

a guest
Jan 18th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. public class Masterproef {
  2. private String proefID;
  3. private String titel;
  4. private Promotor promotor;
  5. private int maxAantal;
  6.  
  7. public Masterproef(String proefID, String titel, Promotor promotor, int maxAantal) {
  8. this.proefID = proefID;
  9. this.titel = titel;
  10. this.promotor = promotor;
  11. this.maxAantal = maxAantal;
  12. }
  13.  
  14. public Masterproef()
  15. {
  16. }
  17.  
  18. public String getProefID() {
  19. return proefID;
  20. }
  21.  
  22. public void setProefID(String proefID) {
  23. this.proefID = proefID;
  24. }
  25.  
  26. public String getTitel() {
  27. return titel;
  28. }
  29.  
  30. public void setTitel(String titel) {
  31. this.titel = titel;
  32. }
  33.  
  34. public Promotor getPromotor() {
  35. return promotor;
  36. }
  37.  
  38. public void setPromotor(Promotor promotor) {
  39. this.promotor = promotor;
  40. }
  41.  
  42. public int getMaxAantal() {
  43. return maxAantal;
  44. }
  45.  
  46. public void setMaxAantal(int maxAantal) {
  47. this.maxAantal = maxAantal;
  48. }
  49.  
  50.  
  51.  
  52.  
  53. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement