zeile 15 wurde geändert
This commit is contained in:
parent
9b040cd779
commit
c93489d014
@ -11,13 +11,8 @@ public class HelloApplication extends Application {
|
||||
@Override
|
||||
public void start(Stage stage) throws IOException {
|
||||
FXMLLoader fxmlLoader = new FXMLLoader(HelloApplication.class.getResource("hello-view.fxml"));
|
||||
/**
|
||||
* @autor: Reshad Meher
|
||||
* Fenstergrößer
|
||||
* Fenstertitle
|
||||
*/
|
||||
Scene scene = new Scene(fxmlLoader.load(), 480, 280);
|
||||
stage.setTitle("Essen Bestellung im Kindergarten");
|
||||
Scene scene = new Scene(fxmlLoader.load(), 320, 240);
|
||||
stage.setTitle("Hello World! von Richard");
|
||||
stage.setScene(scene);
|
||||
stage.show();
|
||||
}
|
||||
@ -25,7 +20,7 @@ public class HelloApplication extends Application {
|
||||
public static void main(String[] args) {
|
||||
Database.init();
|
||||
Database.createDb();
|
||||
Database.fillDb();
|
||||
Database.fillSampleDb();
|
||||
Database.printSampleQuery();
|
||||
//Database.deleteSample();
|
||||
launch();
|
||||
|
Loading…
Reference in New Issue
Block a user