Im Rahmen der Veranstaltung "CS3330 - Projektpraktikum MedizinischeInformatik" an der Universität zu Lübeck entstandenes Krankenhausinformationssystem (KIS).
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

81 line
2.1 KiB

  1. package de.uniluebeck.mi.projmi6.model;
  2. import javafx.beans.property.SimpleIntegerProperty;
  3. import javafx.beans.property.SimpleStringProperty;
  4. /**
  5. * Created by 630030 on 12.11.15.
  6. */
  7. public class Station {
  8. private SimpleStringProperty bezeichnung = new SimpleStringProperty(this, "bezeichnung");
  9. private SimpleStringProperty bezeichnungLang = new SimpleStringProperty(this, "bezeichnungLang");
  10. private SimpleStringProperty station = new SimpleStringProperty(this, "station");
  11. private SimpleIntegerProperty stationstyp = new SimpleIntegerProperty(this, "stationstyp");
  12. private SimpleStringProperty abteilung = new SimpleStringProperty(this, "abteilung");
  13. public String getAbteilung() {
  14. return abteilung.get();
  15. }
  16. public void setAbteilung(String abteilung) {
  17. this.abteilung.set(abteilung);
  18. }
  19. public SimpleStringProperty abteilungProperty() {
  20. return abteilung;
  21. }
  22. public String getBezeichnung() {
  23. return bezeichnung.get();
  24. }
  25. public void setBezeichnung(String bezeichnung) {
  26. this.bezeichnung.set(bezeichnung);
  27. }
  28. public SimpleStringProperty bezeichnungProperty() {
  29. return bezeichnung;
  30. }
  31. public String getBezeichnungLang() {
  32. return bezeichnungLang.get();
  33. }
  34. public void setBezeichnungLang(String bezeichnungLang) {
  35. this.bezeichnungLang.set(bezeichnungLang);
  36. }
  37. public SimpleStringProperty bezeichnungLangProperty() {
  38. return bezeichnungLang;
  39. }
  40. public String getStation() {
  41. return station.get();
  42. }
  43. public void setStation(String station) {
  44. this.station.set(station);
  45. }
  46. public SimpleStringProperty stationProperty() {
  47. return station;
  48. }
  49. public int getStationstyp() {
  50. return stationstyp.get();
  51. }
  52. public void setStationstyp(int stationstyp) {
  53. this.stationstyp.set(stationstyp);
  54. }
  55. public SimpleIntegerProperty stationstypProperty() {
  56. return stationstyp;
  57. }
  58. @Override
  59. public String toString() {
  60. return getBezeichnung();
  61. }
  62. }