beta #3

Merged
PBS2H21ASC merged 2 commits from beta into master 2022-12-02 14:35:43 +01:00
2 changed files with 14 additions and 0 deletions
Showing only changes of commit 1f53698bc7 - Show all commits

6
.idea/vcs.xml generated Normal file
View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$" vcs="Git" />
</component>
</project>

8
src/GebietInterface.java Normal file
View File

@ -0,0 +1,8 @@
public interface GebietInterface {
public int getJahr();
public int getSchlüssel();
public String getName();
public long getGesamtEinkommen();
public int getDurchschnittsEinkommen();
public int getAnzahlEinwohner();
}