GebietsInterface
This commit is contained in:
parent
d6685d8020
commit
a75a69163c
@ -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();
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user