Advertisement
Guest User

Untitled

a guest
May 21st, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. package pl.edziennik.TeacherSource.Helpers;
  2.  
  3. import javafx.beans.property.SimpleIntegerProperty;
  4. import javafx.beans.property.SimpleObjectProperty;
  5. import javafx.beans.property.SimpleStringProperty;
  6. import javafx.scene.control.CheckBox;
  7.  
  8. public class Person {
  9. private final SimpleStringProperty IDSTUD;
  10. private final SimpleStringProperty UCZEN;
  11. private final SimpleObjectProperty OBECNOSC;
  12.  
  13. public Person(String id, String ucz, Object ob) {
  14. this.IDSTUD = new SimpleStringProperty(id);
  15. this.UCZEN = new SimpleStringProperty(ucz);
  16. this.OBECNOSC = new SimpleObjectProperty(ob);
  17. }
  18.  
  19. public String getIDSTUD() {
  20. return IDSTUD.get();
  21. }
  22. public void setIDSTUD(String id) {
  23. IDSTUD.set(id);
  24. }
  25.  
  26. public String getUCZEN() {
  27. return UCZEN.get();
  28. }
  29. public void setUCZEN(String fName) {
  30. UCZEN.set(fName);
  31. }
  32.  
  33. public Object getOBECNOSC() {
  34. return OBECNOSC.get();
  35. }
  36. public void setOBECNOSC(String ob) {
  37. OBECNOSC.set(ob);
  38. }
  39.  
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement