Skip to content
Snippets Groups Projects
Commit 801e500e authored by Dennis Eisold's avatar Dennis Eisold
Browse files

Ein wenig Code aufgeräumt und Warnungen behoben

parent eccdbd10
No related branches found
No related tags found
No related merge requests found
......@@ -4,7 +4,9 @@ import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.geometry.Insets;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.control.Button;
import javafx.scene.control.Label;
import javafx.scene.control.TextField;
import javafx.scene.input.KeyCode;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
......@@ -128,54 +130,4 @@ public class App extends Application {
return result;
}
// /**
// * TODO Dokumentieren
// */
// private static Scene scene;
// /**
// * TODO Dokumentieren
// *
// * @param fxml
// * @throws IOException
// */
// static void setRoot(String fxml) throws IOException {
// scene.setRoot(loadFXML(fxml));
//
// }
//
// /**
// * TODO Dokumentieren
// *
// * @param fxml
// * @return
// * @throws IOException
// */
// private static Parent loadFXML(String fxml) throws IOException {
// FXMLLoader fxmlLoader = new FXMLLoader(App.class.getResource(fxml + ".fxml"));
// return fxmlLoader.load();
// }
//
// /**
// * TODO Dokumentieren
// *
// * @param args
// */
// public static void main(String[] args) {
// Application.launch();
// }
//
// /**
// * TODO Dokumentieren
// *
// * @param stage
// * @throws IOException
// */
// @Override
// public void start(Stage stage) throws IOException {
// scene = new Scene(loadFXML("kenngruppe"));
// stage.setScene(scene);
// stage.setResizable(true);
// stage.show();
// }
}
package projekt.enigma.model;
/**
* TODO: Dokumentation aktuallisieren
* <p>
* Klasse Steckbrett
* <br>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment