9 lines
200 B
Java
9 lines
200 B
Java
public interface GebietInterface {
|
|
int getjahr();
|
|
int getSchüssel();
|
|
String getName();
|
|
long getGesamtEinkommen();
|
|
int getDurchschnittsEinkommen();
|
|
int getAnzahlEinwohner();
|
|
}
|