Java_Uebung/src/GebietInterface.java

12 lines
226 B
Java
Raw Normal View History

2022-12-09 14:07:07 +01:00
/**
* @author Vigier
*/
2022-12-06 14:47:41 +01:00
public interface GebietInterface {
int getjahr();
int getSchüssel();
String getName();
long getGesamtEinkommen();
int getDurchschnittsEinkommen();
int getAnzahlEinwohner();
}