Android App für SRCP gesteuerte Modelleisenbahnen
Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- package de.erich.railcontrol;
-
- import java.io.IOException;
-
- public class MainCall {
-
- /**
- * @param args
- */
-
- static ParseLoksConfiguration lConf = new ParseLoksConfiguration();
-
- public MainCall(String directory) throws IOException {
-
- lConf.parseConfiguration(directory + "/configuration.txt");
-
- /*try {
- lConf.printConfiguration(directory + "/configuration.out");
- } catch (IOException e) {
- System.out.println("Error: " + e);
- System.exit(0);
- } */
- }
-
- }
|