|
|
|
@@ -1,7 +1,193 @@ |
|
|
|
package de.uniluebeck.mi.projmi6.model; |
|
|
|
import javafx.beans.property.SimpleIntegerProperty; |
|
|
|
import javafx.beans.property.SimpleStringProperty; |
|
|
|
|
|
|
|
/** |
|
|
|
* Created by 627933 on 12.11.15. |
|
|
|
*/ |
|
|
|
public class Mitarbeiter { |
|
|
|
private SimpleStringProperty anrede = new SimpleStringProperty(this, "anrede"); |
|
|
|
private SimpleStringProperty einweisenderArzt = new SimpleStringProperty(this, "einweisenderArzt"); |
|
|
|
private SimpleStringProperty fachrichtung= new SimpleStringProperty(this, "fachrichtung"); |
|
|
|
private SimpleStringProperty fachrichtungKurz = new SimpleStringProperty(this, "fachrichtungKurz"); |
|
|
|
private SimpleStringProperty land = new SimpleStringProperty(this, "land"); |
|
|
|
private SimpleIntegerProperty mitarbID = new SimpleIntegerProperty(this, "mitarbID"); |
|
|
|
private SimpleStringProperty nachname = new SimpleStringProperty(this, "nachname"); |
|
|
|
private SimpleStringProperty plz = new SimpleStringProperty(this, "plz"); |
|
|
|
private SimpleStringProperty stadt = new SimpleStringProperty(this, "stadt"); |
|
|
|
private SimpleStringProperty strasse1 = new SimpleStringProperty(this, "strasse1"); |
|
|
|
private SimpleStringProperty strasse2 = new SimpleStringProperty(this, "strasse2"); |
|
|
|
private SimpleStringProperty telefon = new SimpleStringProperty(this, "telefon"); |
|
|
|
private SimpleStringProperty titel = new SimpleStringProperty(this, "titel"); |
|
|
|
private SimpleStringProperty vorname =new SimpleStringProperty(this, "vorname"); |
|
|
|
|
|
|
|
public String getAnrede() { |
|
|
|
return anrede.get(); |
|
|
|
} |
|
|
|
|
|
|
|
public SimpleStringProperty anredeProperty() { |
|
|
|
return anrede; |
|
|
|
} |
|
|
|
|
|
|
|
public void setAnrede(String anrede) { |
|
|
|
this.anrede.set(anrede); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public String getEinweisenderArzt() { |
|
|
|
return einweisenderArzt.get(); |
|
|
|
} |
|
|
|
|
|
|
|
public SimpleStringProperty einweisenderArztProperty() { |
|
|
|
return einweisenderArzt; |
|
|
|
} |
|
|
|
|
|
|
|
public void setEinweisenderArzt(String einweisenderArzt) { |
|
|
|
this.einweisenderArzt.set(einweisenderArzt); |
|
|
|
} |
|
|
|
|
|
|
|
public String getFachrichtung() { |
|
|
|
return fachrichtung.get(); |
|
|
|
} |
|
|
|
|
|
|
|
public SimpleStringProperty fachrichtungProperty() { |
|
|
|
return fachrichtung; |
|
|
|
} |
|
|
|
|
|
|
|
public void setFachrichtung(String fachrichtung) { |
|
|
|
this.fachrichtung.set(fachrichtung); |
|
|
|
} |
|
|
|
|
|
|
|
public String getFachrichtungKurz() { |
|
|
|
return fachrichtungKurz.get(); |
|
|
|
} |
|
|
|
|
|
|
|
public SimpleStringProperty fachrichtungKurzProperty() { |
|
|
|
return fachrichtungKurz; |
|
|
|
} |
|
|
|
|
|
|
|
public void setFachrichtungKurz(String fachrichtungKurz) { |
|
|
|
this.fachrichtungKurz.set(fachrichtungKurz); |
|
|
|
} |
|
|
|
|
|
|
|
public String getLand() { |
|
|
|
return land.get(); |
|
|
|
} |
|
|
|
|
|
|
|
public SimpleStringProperty landProperty() { |
|
|
|
return land; |
|
|
|
} |
|
|
|
|
|
|
|
public void setLand(String land) { |
|
|
|
this.land.set(land); |
|
|
|
} |
|
|
|
|
|
|
|
public int getMitarbID() { |
|
|
|
return mitarbID.get(); |
|
|
|
} |
|
|
|
|
|
|
|
public SimpleIntegerProperty mitarbIDProperty() { |
|
|
|
return mitarbID; |
|
|
|
} |
|
|
|
|
|
|
|
public void setMitarbID(int mitarbID) { |
|
|
|
this.mitarbID.set(mitarbID); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public String getNachname() { |
|
|
|
return nachname.get(); |
|
|
|
} |
|
|
|
|
|
|
|
public SimpleStringProperty nachnameProperty() { |
|
|
|
return nachname; |
|
|
|
} |
|
|
|
|
|
|
|
public void setNachname(String nachname) { |
|
|
|
this.nachname.set(nachname); |
|
|
|
} |
|
|
|
|
|
|
|
public String getPlz() { |
|
|
|
return plz.get(); |
|
|
|
} |
|
|
|
|
|
|
|
public SimpleStringProperty plzProperty() { |
|
|
|
return plz; |
|
|
|
} |
|
|
|
|
|
|
|
public void setPlz(String plz) { |
|
|
|
this.plz.set(plz); |
|
|
|
} |
|
|
|
|
|
|
|
public String getStadt() { |
|
|
|
return stadt.get(); |
|
|
|
} |
|
|
|
|
|
|
|
public SimpleStringProperty stadtProperty() { |
|
|
|
return stadt; |
|
|
|
} |
|
|
|
|
|
|
|
public void setStadt(String stadt) { |
|
|
|
this.stadt.set(stadt); |
|
|
|
} |
|
|
|
|
|
|
|
public String getStrasse1() { |
|
|
|
return strasse1.get(); |
|
|
|
} |
|
|
|
|
|
|
|
public SimpleStringProperty strasse1Property() { |
|
|
|
return strasse1; |
|
|
|
} |
|
|
|
|
|
|
|
public void setStrasse1(String strasse1) { |
|
|
|
this.strasse1.set(strasse1); |
|
|
|
} |
|
|
|
|
|
|
|
public String getStrasse2() { |
|
|
|
return strasse2.get(); |
|
|
|
} |
|
|
|
|
|
|
|
public SimpleStringProperty strasse2Property() { |
|
|
|
return strasse2; |
|
|
|
} |
|
|
|
|
|
|
|
public void setStrasse2(String strasse2) { |
|
|
|
this.strasse2.set(strasse2); |
|
|
|
} |
|
|
|
|
|
|
|
public String getTelefon() { |
|
|
|
return telefon.get(); |
|
|
|
} |
|
|
|
|
|
|
|
public SimpleStringProperty telefonProperty() { |
|
|
|
return telefon; |
|
|
|
} |
|
|
|
|
|
|
|
public void setTelefon(String telefon) { |
|
|
|
this.telefon.set(telefon); |
|
|
|
} |
|
|
|
|
|
|
|
public String getTitel() { |
|
|
|
return titel.get(); |
|
|
|
} |
|
|
|
|
|
|
|
public SimpleStringProperty titelProperty() { |
|
|
|
return titel; |
|
|
|
} |
|
|
|
|
|
|
|
public void setTitel(String titel) { |
|
|
|
this.titel.set(titel); |
|
|
|
} |
|
|
|
|
|
|
|
public String getVorname() { |
|
|
|
return vorname.get(); |
|
|
|
} |
|
|
|
|
|
|
|
public SimpleStringProperty vornameProperty() { |
|
|
|
return vorname; |
|
|
|
} |
|
|
|
|
|
|
|
public void setVorname(String vorname) { |
|
|
|
this.vorname.set(vorname); |
|
|
|
} |
|
|
|
} |