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