Compare commits
2 Commits
d45ae26461
...
25ff282f27
| Author | SHA1 | Date | |
|---|---|---|---|
| 25ff282f27 | |||
| a75a69163c |
@@ -1,4 +1,4 @@
|
|||||||
public class Gebiet {
|
public class Gebiet implements GebietInterface{
|
||||||
private int jahr;
|
private int jahr;
|
||||||
private int schluessel;
|
private int schluessel;
|
||||||
private String name;
|
private String name;
|
||||||
|
|||||||
8
src/GebietInterface.java
Normal file
8
src/GebietInterface.java
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
public interface GebietInterface {
|
||||||
|
int getJahr();
|
||||||
|
int getSchlüssel();
|
||||||
|
String getName();
|
||||||
|
long getGesamtEinkommen();
|
||||||
|
int getDurchschnittsEinkommen();
|
||||||
|
int getAnzahlEinwohner();
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user