GebietsInterface
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
public class Gebiet {
|
public class Gebiet implements GebietInterface{
|
||||||
private int jahr;
|
private int jahr;
|
||||||
private int schlüssel;
|
private int schlüssel;
|
||||||
private String name;
|
private String name;
|
||||||
|
8
src/GebietInterface.java
Normal file
8
src/GebietInterface.java
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
public interface GebietInterface {
|
||||||
|
int getJahr();
|
||||||
|
int getSchlüssel();
|
||||||
|
String getName();
|
||||||
|
long getGesamtEinkommen();
|
||||||
|
int getDurchschnittsEinkommen();
|
||||||
|
int getAnzahlEinwohner();
|
||||||
|
}
|
Reference in New Issue
Block a user