9 lines
201 B
Java
9 lines
201 B
Java
public interface GebietInterface {
|
|
int getJahr();
|
|
int getSchlüssel();
|
|
String getName();
|
|
long getGesamtEinkommen();
|
|
int getDurchschnittsEinkommen();
|
|
int getAnzahlEinwohner();
|
|
}
|