Compare commits

..

No commits in common. "8fc55b3a3553a989655a55691016cda57da3d1ad" and "221a6c988f58cbfe0625e5aab21f623a99441540" have entirely different histories.

4 changed files with 19 additions and 19 deletions

10
.idea/runConfigurations.xml generated Normal file
View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="RunConfigurationProducerService">
<option name="ignoredProducers">
<set>
<option value="com.android.tools.idea.compose.preview.runconfiguration.ComposePreviewRunConfigurationProducer" />
</set>
</option>
</component>
</project>

View File

@ -1,7 +1,12 @@
/**
* enthält das Hauptprogramm und kommuniziert mit dem Benutzer.
*
* Ruft die Gebiete aus der GebietsDatei ab und speichert sie in die GebietsListe rein.
* @author Gubitz, Wöstemeyer, Pfannenstiel, Maier, Vigier :D
*/
public class EinkommenInfo {
public class EinkommenInfo
{
public static void main(String[] args)
{
}
}

View File

@ -3,8 +3,8 @@
* interpretieren, als Gebiet-Objekte zu speichern und diese in Form einer Liste zur Verfügung
* zu stellen.
*
* @author Gubitz, Wöstemeyer, Pfannenstiel, Maier, Vigier
* @author Gubitz, Wöstemeyer, Pfannenstiel, Maier, M. Vigier :D
*/
public class GebietsDatei {
//wg //er kam, er sah und siegte
}

View File

@ -1,15 +0,0 @@
import java.util.*;
public class MockGebietsDatei {
private ArrayList<Gebiet> gebiete = new ArrayList<>() {
};
public void GebietsDatei (String dateiname){
}
public List<Gebiet> getGebiete() {
return gebiete;
}
}