From 5a21b51d382552ad13437360fe294877134655f5 Mon Sep 17 00:00:00 2001 From: Daan Sneep Date: Mon, 18 Feb 2019 14:26:08 +0100 Subject: [PATCH 01/16] Some additional xml files --- .../.idea/vcs.xml | 6 ++ .../.idea/workspace.xml | 68 +++++++++++-------- 2 files changed, 46 insertions(+), 28 deletions(-) create mode 100644 OOPP 43 In the beginning there was_/.idea/vcs.xml diff --git a/OOPP 43 In the beginning there was_/.idea/vcs.xml b/OOPP 43 In the beginning there was_/.idea/vcs.xml new file mode 100644 index 0000000..6c0b863 --- /dev/null +++ b/OOPP 43 In the beginning there was_/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/OOPP 43 In the beginning there was_/.idea/workspace.xml b/OOPP 43 In the beginning there was_/.idea/workspace.xml index 4025774..be90f8b 100644 --- a/OOPP 43 In the beginning there was_/.idea/workspace.xml +++ b/OOPP 43 In the beginning there was_/.idea/workspace.xml @@ -1,7 +1,9 @@ - + + + - + - - + + - + @@ -33,6 +35,9 @@ + + - - \ No newline at end of file diff --git a/OOPP 43 In the beginning there was_/OOPP 43 In the beginning there was_.iml b/OOPP 43 In the beginning there was_/OOPP 43 In the beginning there was_.iml deleted file mode 100644 index c90834f..0000000 --- a/OOPP 43 In the beginning there was_/OOPP 43 In the beginning there was_.iml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/OOPP 43 In the beginning there was_/out/production/OOPP 43 In the beginning there was_/Main.class b/OOPP 43 In the beginning there was_/out/production/OOPP 43 In the beginning there was_/Main.class deleted file mode 100644 index b719d34eb4828326dd75056ff1987282ff09f047..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 514 zcmZuuO;5r=5Pb`U(pm+n;J1P&^k8p#z<4n+9_mMe!GotQY+y;-HKmyNv-F^e2Y-M+ z$~aq0kc2(V?7VsNW@h*M=kp7|2@Y%&v1Xx$dI{?`Hn3@8%fvQA@l3`tJ!iF`-18tLr0T0454${(I{pKVbSTH9;a_tZx2ZZJ&rokY`Xm0#y^zNP zuahP+9<(!co(zcZE=V)j9W_aM;!^5%mR3C0A`VQHOzb$=#U6umCBjfO9#j(cnC ahcOedDFx)IkMU2$LItaY(|3{0!Tkkj2WAog diff --git a/OOPP 43 In the beginning there was_/src/Main.java b/OOPP 43 In the beginning there was_/src/Main.java deleted file mode 100644 index d77de4e..0000000 --- a/OOPP 43 In the beginning there was_/src/Main.java +++ /dev/null @@ -1,60 +0,0 @@ -import javafx.application.Application; -import javafx.event.ActionEvent; -import javafx.event.EventHandler; -import javafx.scene.Scene; -import javafx.scene.control.Button; -import javafx.scene.layout.StackPane; -import javafx.stage.Stage; - -//MAIN CLIENT - -public class Main { - public static void main(String[] args){ - - System.out.println("Hello World!"); - } -} - -//COMMENT THE "MAIN CLIENT" PART OUT AND UNCOMMENT THE "JAVAFX" PART TO TEST IF JAVAFX WORKS -//Don't uncomment the imports pls :) - -//JAVAFX - -//public class Main extends Application { -// -// @Override -// public void start(Stage primaryStage) { -// Button btn = new Button(); -// btn.setText("Say 'Hello World'"); -// btn.setOnAction(new EventHandler() { -// -// @Override -// public void handle(ActionEvent event) { -// System.out.println("Hello World!"); -// } -// }); -// -// Button btn2 = new Button(); -// btn2.setText("Say something else!"); -// btn2.setOnAction(new EventHandler() { -// @Override -// public void handle(ActionEvent event) { -// System.out.println("something else!"); -// } -// }); -// -// StackPane root = new StackPane(); -// //apparently root.getchildren.add does the same as document.ready in javascript -// root.getChildren().add(btn); -// -// Scene scene = new Scene(root, 500, 250); -// -// primaryStage.setTitle("Hello World!"); -// primaryStage.setScene(scene); -// primaryStage.show(); -// } -// -// public static void main(String[] args) { -// launch(args); -// } -//}