Android App für SRCP gesteuerte Modelleisenbahnen
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

26 rindas
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. }