12 lines
226 B
Java
12 lines
226 B
Java
/**
|
|
* @author Vigier
|
|
*/
|
|
public interface GebietInterface {
|
|
int getjahr();
|
|
int getSchüssel();
|
|
String getName();
|
|
long getGesamtEinkommen();
|
|
int getDurchschnittsEinkommen();
|
|
int getAnzahlEinwohner();
|
|
}
|