Android App für SRCP gesteuerte Modelleisenbahnen
Du kannst nicht mehr als 25 Themen auswählen
Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
|
- 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);
- } */
- }
-
- }
|