Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
25ff282f27
@ -1,17 +1,16 @@
|
||||
public class Gebiet implements GebietInterface{
|
||||
private int jahr;
|
||||
private int schlüssel;
|
||||
private int schluessel;
|
||||
private String name;
|
||||
private long gesamtEinkommen;
|
||||
private int durchschnittsEinkommen;
|
||||
|
||||
public Gebiet(int jahr, int schlüssel, String name, long gesamtEinkommen, int durchschnittsEinkommen) {
|
||||
public Gebiet(int jahr, int schluessel, String name, long gesamtEinkommen, int durchschnittsEinkommen) {
|
||||
this.jahr = jahr;
|
||||
this.schlüssel = schlüssel;
|
||||
this.schluessel = schluessel;
|
||||
this.name = name;
|
||||
this.gesamtEinkommen = gesamtEinkommen;
|
||||
this.durchschnittsEinkommen = durchschnittsEinkommen;
|
||||
// lol
|
||||
}
|
||||
|
||||
public int getJahr() {
|
||||
@ -19,7 +18,7 @@ public class Gebiet implements GebietInterface{
|
||||
}
|
||||
|
||||
public int getSchlüssel() {
|
||||
return schlüssel;
|
||||
return schluessel;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
@ -42,7 +41,7 @@ public class Gebiet implements GebietInterface{
|
||||
public String toString() {
|
||||
return "Gebiet{" +
|
||||
"jahr=" + jahr +
|
||||
", schlüssel=" + schlüssel +
|
||||
", schluessel=" + schluessel +
|
||||
", name='" + name + '\'' +
|
||||
", gesamtEinkommen=" + gesamtEinkommen +
|
||||
", durchschnittsEinkommen=" + durchschnittsEinkommen +
|
||||
|
Loading…
Reference in New Issue
Block a user