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.

26 lignes
496B

  1. package de.erich.railcontrol;
  2. import java.io.IOException;
  3. public class MainCall {
  4. /**
  5. * @param args
  6. */
  7. static ParseLoksConfiguration lConf = new ParseLoksConfiguration();
  8. public MainCall(String directory) throws IOException {
  9. lConf.parseConfiguration(directory + "/configuration.txt");
  10. /*try {
  11. lConf.printConfiguration(directory + "/configuration.out");
  12. } catch (IOException e) {
  13. System.out.println("Error: " + e);
  14. System.exit(0);
  15. } */
  16. }
  17. }