|
|
|
@@ -10,57 +10,69 @@ public class Station { |
|
|
|
private SimpleStringProperty bezeichnung = new SimpleStringProperty(this, "bezeichnung"); |
|
|
|
private SimpleStringProperty bezeichnungLang = new SimpleStringProperty(this, "bezeichnungLang"); |
|
|
|
private SimpleStringProperty station = new SimpleStringProperty(this, "station"); |
|
|
|
private SimpleIntegerProperty stationstyp = new SimpleIntegerProperty( this, "stationstyp"); |
|
|
|
private SimpleIntegerProperty stationstyp = new SimpleIntegerProperty(this, "stationstyp"); |
|
|
|
private SimpleStringProperty abteilung = new SimpleStringProperty(this, "abteilung"); |
|
|
|
|
|
|
|
public String getAbteilung() { |
|
|
|
return abteilung.get(); |
|
|
|
} |
|
|
|
|
|
|
|
public String getBezeichnung() { |
|
|
|
return bezeichnung.get(); |
|
|
|
public void setAbteilung(String abteilung) { |
|
|
|
this.abteilung.set(abteilung); |
|
|
|
} |
|
|
|
|
|
|
|
public SimpleStringProperty bezeichnungProperty() { |
|
|
|
return bezeichnung; |
|
|
|
public SimpleStringProperty abteilungProperty() { |
|
|
|
return abteilung; |
|
|
|
} |
|
|
|
|
|
|
|
public String getBezeichnung() { |
|
|
|
return bezeichnung.get(); |
|
|
|
} |
|
|
|
|
|
|
|
public void setBezeichnung(String bezeichnung) { |
|
|
|
this.bezeichnung.set(bezeichnung); |
|
|
|
} |
|
|
|
|
|
|
|
public String getBezeichnungLang() { |
|
|
|
return bezeichnungLang.get(); |
|
|
|
public SimpleStringProperty bezeichnungProperty() { |
|
|
|
return bezeichnung; |
|
|
|
} |
|
|
|
|
|
|
|
public SimpleStringProperty bezeichnungLangProperty() { |
|
|
|
return bezeichnungLang; |
|
|
|
public String getBezeichnungLang() { |
|
|
|
return bezeichnungLang.get(); |
|
|
|
} |
|
|
|
|
|
|
|
public void setBezeichnungLang(String bezeichnungLang) { |
|
|
|
this.bezeichnungLang.set(bezeichnungLang); |
|
|
|
} |
|
|
|
|
|
|
|
public String getStation() { |
|
|
|
return station.get(); |
|
|
|
public SimpleStringProperty bezeichnungLangProperty() { |
|
|
|
return bezeichnungLang; |
|
|
|
} |
|
|
|
|
|
|
|
public SimpleStringProperty stationProperty() { |
|
|
|
return station; |
|
|
|
public String getStation() { |
|
|
|
return station.get(); |
|
|
|
} |
|
|
|
|
|
|
|
public void setStation(String station) { |
|
|
|
this.station.set(station); |
|
|
|
} |
|
|
|
|
|
|
|
public int getStationstyp() { |
|
|
|
return stationstyp.get(); |
|
|
|
public SimpleStringProperty stationProperty() { |
|
|
|
return station; |
|
|
|
} |
|
|
|
|
|
|
|
public SimpleIntegerProperty stationstypProperty() { |
|
|
|
return stationstyp; |
|
|
|
public int getStationstyp() { |
|
|
|
return stationstyp.get(); |
|
|
|
} |
|
|
|
|
|
|
|
public void setStationstyp(int stationstyp) { |
|
|
|
this.stationstyp.set(stationstyp); |
|
|
|
} |
|
|
|
|
|
|
|
public SimpleIntegerProperty stationstypProperty() { |
|
|
|
return stationstyp; |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public String toString() { |
|
|
|
return getBezeichnung(); |
|
|
|
|