From ef35361926cace198af8f0f610392126018b84da Mon Sep 17 00:00:00 2001 From: Christopher Bohn <bohn@unl.edu> Date: Fri, 23 Aug 2019 21:21:55 -0500 Subject: [PATCH] Added .gitignore; cleaned up JetBrains files and .class files --- .gitignore | 37 ++++++ HelloWorld/.idea/.gitignore | 2 - HelloWorld/.idea/compiler.xml | 23 ---- HelloWorld/.idea/description.html | 2 - HelloWorld/.idea/encodings.xml | 6 - HelloWorld/.idea/gradle.xml | 4 - HelloWorld/.idea/misc.xml | 9 -- HelloWorld/.idea/modules.xml | 8 -- HelloWorld/.idea/uiDesigner.xml | 125 ------------------ HelloWorld/.idea/vcs.xml | 6 - HelloWorld/HelloWorld.iml | 12 -- .../META-INF/HelloWorld.kotlin_module | Bin 16 -> 0 bytes .../HelloWorld/app/HomeController.class | Bin 1846 -> 0 bytes .../out/production/HelloWorld/app/Main.class | Bin 1192 -> 0 bytes .../app/SecondScreenController.class | Bin 1286 -> 0 bytes .../out/production/HelloWorld/app/home.fxml | 44 ------ .../HelloWorld/app/secondScreen.fxml | 19 --- 17 files changed, 37 insertions(+), 260 deletions(-) create mode 100644 .gitignore delete mode 100644 HelloWorld/.idea/.gitignore delete mode 100644 HelloWorld/.idea/compiler.xml delete mode 100644 HelloWorld/.idea/description.html delete mode 100644 HelloWorld/.idea/encodings.xml delete mode 100644 HelloWorld/.idea/gradle.xml delete mode 100644 HelloWorld/.idea/misc.xml delete mode 100644 HelloWorld/.idea/modules.xml delete mode 100644 HelloWorld/.idea/uiDesigner.xml delete mode 100644 HelloWorld/.idea/vcs.xml delete mode 100644 HelloWorld/HelloWorld.iml delete mode 100644 HelloWorld/out/production/HelloWorld/META-INF/HelloWorld.kotlin_module delete mode 100644 HelloWorld/out/production/HelloWorld/app/HomeController.class delete mode 100644 HelloWorld/out/production/HelloWorld/app/Main.class delete mode 100644 HelloWorld/out/production/HelloWorld/app/SecondScreenController.class delete mode 100644 HelloWorld/out/production/HelloWorld/app/home.fxml delete mode 100644 HelloWorld/out/production/HelloWorld/app/secondScreen.fxml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0ba7d87 --- /dev/null +++ b/.gitignore @@ -0,0 +1,37 @@ +# Project-specific +# n/a + +# Mac file finder metadata +.DS_Store +# MS Office temporary file +~* +# Emacs backup file +*~ + +# Java files +*.class + +# JetBrains (IntelliJ IDEA, PyCharm, etc) files +.idea/ +cmake-build-*/ +out/ +bin/ +*.iml +*.iws +*.ipr + +# Eclipse files +bin/ +.settings/ +.classpath +.project + +# Maven +target/ + +# Miscellaneous +tmp/ +*.tmp +*.bak +*.swp + diff --git a/HelloWorld/.idea/.gitignore b/HelloWorld/.idea/.gitignore deleted file mode 100644 index 5c98b42..0000000 --- a/HelloWorld/.idea/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -# Default ignored files -/workspace.xml \ No newline at end of file diff --git a/HelloWorld/.idea/compiler.xml b/HelloWorld/.idea/compiler.xml deleted file mode 100644 index 217af47..0000000 --- a/HelloWorld/.idea/compiler.xml +++ /dev/null @@ -1,23 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<project version="4"> - <component name="CompilerConfiguration"> - <option name="DEFAULT_COMPILER" value="Javac" /> - <resourceExtensions /> - <wildcardResourcePatterns> - <entry name="!?*.java" /> - <entry name="!?*.form" /> - <entry name="!?*.class" /> - <entry name="!?*.groovy" /> - <entry name="!?*.scala" /> - <entry name="!?*.flex" /> - <entry name="!?*.kt" /> - <entry name="!?*.clj" /> - </wildcardResourcePatterns> - <annotationProcessing> - <profile default="true" name="Default" enabled="false"> - <processorPath useClasspath="true" /> - </profile> - </annotationProcessing> - </component> -</project> - diff --git a/HelloWorld/.idea/description.html b/HelloWorld/.idea/description.html deleted file mode 100644 index cc10d56..0000000 --- a/HelloWorld/.idea/description.html +++ /dev/null @@ -1,2 +0,0 @@ -<html>Simple <b>JavaFX 2.0</b> application that includes simple .fxml file with attached controller and Main class to quick start. Artifact to build JavaFX application is provided. -</html> \ No newline at end of file diff --git a/HelloWorld/.idea/encodings.xml b/HelloWorld/.idea/encodings.xml deleted file mode 100644 index 97626ba..0000000 --- a/HelloWorld/.idea/encodings.xml +++ /dev/null @@ -1,6 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<project version="4"> - <component name="Encoding"> - <file url="PROJECT" charset="UTF-8" /> - </component> -</project> \ No newline at end of file diff --git a/HelloWorld/.idea/gradle.xml b/HelloWorld/.idea/gradle.xml deleted file mode 100644 index 3e3960b..0000000 --- a/HelloWorld/.idea/gradle.xml +++ /dev/null @@ -1,4 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<project version="4"> - <component name="GradleMigrationSettings" migrationVersion="1" /> -</project> \ No newline at end of file diff --git a/HelloWorld/.idea/misc.xml b/HelloWorld/.idea/misc.xml deleted file mode 100644 index 4e6e724..0000000 --- a/HelloWorld/.idea/misc.xml +++ /dev/null @@ -1,9 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<project version="4"> - <component name="ProjectKey"> - <option name="state" value="project://e79810c8-c5c8-43b1-b19c-90c1f4095425" /> - </component> - <component name="ProjectRootManager" version="2" languageLevel="JDK_1_8" default="true" project-jdk-name="1.8" project-jdk-type="JavaSDK"> - <output url="file://$PROJECT_DIR$/out" /> - </component> -</project> \ No newline at end of file diff --git a/HelloWorld/.idea/modules.xml b/HelloWorld/.idea/modules.xml deleted file mode 100644 index e3c7927..0000000 --- a/HelloWorld/.idea/modules.xml +++ /dev/null @@ -1,8 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<project version="4"> - <component name="ProjectModuleManager"> - <modules> - <module fileurl="file://$PROJECT_DIR$/HelloWorld.iml" filepath="$PROJECT_DIR$/HelloWorld.iml" /> - </modules> - </component> -</project> \ No newline at end of file diff --git a/HelloWorld/.idea/uiDesigner.xml b/HelloWorld/.idea/uiDesigner.xml deleted file mode 100644 index 3b00020..0000000 --- a/HelloWorld/.idea/uiDesigner.xml +++ /dev/null @@ -1,125 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<project version="4"> - <component name="Palette2"> - <group name="Swing"> - <item class="com.intellij.uiDesigner.HSpacer" tooltip-text="Horizontal Spacer" icon="/com/intellij/uiDesigner/icons/hspacer.png" removable="false" auto-create-binding="false" can-attach-label="false"> - <default-constraints vsize-policy="1" hsize-policy="6" anchor="0" fill="1" /> - </item> - <item class="com.intellij.uiDesigner.VSpacer" tooltip-text="Vertical Spacer" icon="/com/intellij/uiDesigner/icons/vspacer.png" removable="false" auto-create-binding="false" can-attach-label="false"> - <default-constraints vsize-policy="6" hsize-policy="1" anchor="0" fill="2" /> - </item> - <item class="javax.swing.JPanel" icon="/com/intellij/uiDesigner/icons/panel.png" removable="false" auto-create-binding="false" can-attach-label="false"> - <default-constraints vsize-policy="3" hsize-policy="3" anchor="0" fill="3" /> - </item> - <item class="javax.swing.JScrollPane" icon="/com/intellij/uiDesigner/icons/scrollPane.png" removable="false" auto-create-binding="false" can-attach-label="true"> - <default-constraints vsize-policy="7" hsize-policy="7" anchor="0" fill="3" /> - </item> - <item class="javax.swing.JButton" icon="/com/intellij/uiDesigner/icons/button.png" removable="false" auto-create-binding="true" can-attach-label="false"> - <default-constraints vsize-policy="0" hsize-policy="3" anchor="0" fill="1" /> - <initial-values> - <property name="text" value="Button" /> - </initial-values> - </item> - <item class="javax.swing.JRadioButton" icon="/com/intellij/uiDesigner/icons/radioButton.png" removable="false" auto-create-binding="true" can-attach-label="false"> - <default-constraints vsize-policy="0" hsize-policy="3" anchor="8" fill="0" /> - <initial-values> - <property name="text" value="RadioButton" /> - </initial-values> - </item> - <item class="javax.swing.JCheckBox" icon="/com/intellij/uiDesigner/icons/checkBox.png" removable="false" auto-create-binding="true" can-attach-label="false"> - <default-constraints vsize-policy="0" hsize-policy="3" anchor="8" fill="0" /> - <initial-values> - <property name="text" value="CheckBox" /> - </initial-values> - </item> - <item class="javax.swing.JLabel" icon="/com/intellij/uiDesigner/icons/label.png" removable="false" auto-create-binding="false" can-attach-label="false"> - <default-constraints vsize-policy="0" hsize-policy="0" anchor="8" fill="0" /> - <initial-values> - <property name="text" value="Label" /> - </initial-values> - </item> - <item class="javax.swing.JTextField" icon="/com/intellij/uiDesigner/icons/textField.png" removable="false" auto-create-binding="true" can-attach-label="true"> - <default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1"> - <preferred-size width="150" height="-1" /> - </default-constraints> - </item> - <item class="javax.swing.JPasswordField" icon="/com/intellij/uiDesigner/icons/passwordField.png" removable="false" auto-create-binding="true" can-attach-label="true"> - <default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1"> - <preferred-size width="150" height="-1" /> - </default-constraints> - </item> - <item class="javax.swing.JFormattedTextField" icon="/com/intellij/uiDesigner/icons/formattedTextField.png" removable="false" auto-create-binding="true" can-attach-label="true"> - <default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1"> - <preferred-size width="150" height="-1" /> - </default-constraints> - </item> - <item class="javax.swing.JTextArea" icon="/com/intellij/uiDesigner/icons/textArea.png" removable="false" auto-create-binding="true" can-attach-label="true"> - <default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3"> - <preferred-size width="150" height="50" /> - </default-constraints> - </item> - <item class="javax.swing.JTextPane" icon="/com/intellij/uiDesigner/icons/textPane.png" removable="false" auto-create-binding="true" can-attach-label="true"> - <default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3"> - <preferred-size width="150" height="50" /> - </default-constraints> - </item> - <item class="javax.swing.JEditorPane" icon="/com/intellij/uiDesigner/icons/editorPane.png" removable="false" auto-create-binding="true" can-attach-label="true"> - <default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3"> - <preferred-size width="150" height="50" /> - </default-constraints> - </item> - <item class="javax.swing.JComboBox" icon="/com/intellij/uiDesigner/icons/comboBox.png" removable="false" auto-create-binding="true" can-attach-label="true"> - <default-constraints vsize-policy="0" hsize-policy="2" anchor="8" fill="1" /> - </item> - <item class="javax.swing.JTable" icon="/com/intellij/uiDesigner/icons/table.png" removable="false" auto-create-binding="true" can-attach-label="false"> - <default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3"> - <preferred-size width="150" height="50" /> - </default-constraints> - </item> - <item class="javax.swing.JList" icon="/com/intellij/uiDesigner/icons/list.png" removable="false" auto-create-binding="true" can-attach-label="false"> - <default-constraints vsize-policy="6" hsize-policy="2" anchor="0" fill="3"> - <preferred-size width="150" height="50" /> - </default-constraints> - </item> - <item class="javax.swing.JTree" icon="/com/intellij/uiDesigner/icons/tree.png" removable="false" auto-create-binding="true" can-attach-label="false"> - <default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3"> - <preferred-size width="150" height="50" /> - </default-constraints> - </item> - <item class="javax.swing.JTabbedPane" icon="/com/intellij/uiDesigner/icons/tabbedPane.png" removable="false" auto-create-binding="true" can-attach-label="false"> - <default-constraints vsize-policy="3" hsize-policy="3" anchor="0" fill="3"> - <preferred-size width="200" height="200" /> - </default-constraints> - </item> - <item class="javax.swing.JSplitPane" icon="/com/intellij/uiDesigner/icons/splitPane.png" removable="false" auto-create-binding="false" can-attach-label="false"> - <default-constraints vsize-policy="3" hsize-policy="3" anchor="0" fill="3"> - <preferred-size width="200" height="200" /> - </default-constraints> - </item> - <item class="javax.swing.JSpinner" icon="/com/intellij/uiDesigner/icons/spinner.png" removable="false" auto-create-binding="true" can-attach-label="true"> - <default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1" /> - </item> - <item class="javax.swing.JSlider" icon="/com/intellij/uiDesigner/icons/slider.png" removable="false" auto-create-binding="true" can-attach-label="false"> - <default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1" /> - </item> - <item class="javax.swing.JSeparator" icon="/com/intellij/uiDesigner/icons/separator.png" removable="false" auto-create-binding="false" can-attach-label="false"> - <default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3" /> - </item> - <item class="javax.swing.JProgressBar" icon="/com/intellij/uiDesigner/icons/progressbar.png" removable="false" auto-create-binding="true" can-attach-label="false"> - <default-constraints vsize-policy="0" hsize-policy="6" anchor="0" fill="1" /> - </item> - <item class="javax.swing.JToolBar" icon="/com/intellij/uiDesigner/icons/toolbar.png" removable="false" auto-create-binding="false" can-attach-label="false"> - <default-constraints vsize-policy="0" hsize-policy="6" anchor="0" fill="1"> - <preferred-size width="-1" height="20" /> - </default-constraints> - </item> - <item class="javax.swing.JToolBar$Separator" icon="/com/intellij/uiDesigner/icons/toolbarSeparator.png" removable="false" auto-create-binding="false" can-attach-label="false"> - <default-constraints vsize-policy="0" hsize-policy="0" anchor="0" fill="1" /> - </item> - <item class="javax.swing.JScrollBar" icon="/com/intellij/uiDesigner/icons/scrollbar.png" removable="false" auto-create-binding="true" can-attach-label="false"> - <default-constraints vsize-policy="6" hsize-policy="0" anchor="0" fill="2" /> - </item> - </group> - </component> -</project> - diff --git a/HelloWorld/.idea/vcs.xml b/HelloWorld/.idea/vcs.xml deleted file mode 100644 index 6c0b863..0000000 --- a/HelloWorld/.idea/vcs.xml +++ /dev/null @@ -1,6 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<project version="4"> - <component name="VcsDirectoryMappings"> - <mapping directory="$PROJECT_DIR$/.." vcs="Git" /> - </component> -</project> \ No newline at end of file diff --git a/HelloWorld/HelloWorld.iml b/HelloWorld/HelloWorld.iml deleted file mode 100644 index d5c0743..0000000 --- a/HelloWorld/HelloWorld.iml +++ /dev/null @@ -1,12 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<module type="JAVA_MODULE" version="4"> - <component name="NewModuleRootManager" inherit-compiler-output="true"> - <exclude-output /> - <content url="file://$MODULE_DIR$"> - <sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" /> - </content> - <orderEntry type="inheritedJdk" /> - <orderEntry type="sourceFolder" forTests="false" /> - </component> -</module> - diff --git a/HelloWorld/out/production/HelloWorld/META-INF/HelloWorld.kotlin_module b/HelloWorld/out/production/HelloWorld/META-INF/HelloWorld.kotlin_module deleted file mode 100644 index 2983af70661ad375cc499ebc4da5a68ca46c532e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 16 RcmZQzU|?ooU|@t|egFVe02KfL diff --git a/HelloWorld/out/production/HelloWorld/app/HomeController.class b/HelloWorld/out/production/HelloWorld/app/HomeController.class deleted file mode 100644 index 10e079f5d9bd5058096e133fe482a6fdd1763b37..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1846 zcmX^0Z`VEs1_l#`6fOoa24hYJQ3ewZ22(BuGX`@G1`7@bOOUt~2ZJ>igAIc%7lR#x zJv)N~JA)$^0}q1}7lSi{3p;}=7Xv?o8%V^Roxy{PL5RT<M0l|?c(XJ3Ffy>^W~QX% zq%tzd_+%xPC8kyA7bmCYrRpc==am%Y=ji(+CZ*<BGcrg9mFAUX=B9>a7H1~qq&nv1 z<(DLuWaj4;GcpLlw5C<$=IFac`1)8gGO*cX=4F=HF)}b~XofK|usG+Zq%tz_`();& z`jzG;r51%GCV}h~^2tw5%n3^@$^`MDf-EH&nZ=9@B0h-)1^OQOxv9<&=j5aoSu-;5 zC+B1)XZxh4l{l4_l;r0zG6;Z0f-=)H;6j36A*cM3lKfnlGM?h{%#!4c;N+sz)I3H8 zSq+%OQ_E8GO7tC*K^}4iv8_RFW(5l~GDzW8#>l`{kXV$OSHj333R49MzyPqYH6sHn zm=E#{N&p9gf*BM}<(YXY`Q^y+C5h>&`oSR5nvsFawIVsS0OYV@b_QQY2Cm@z(xT*4 zw@gsr38RLM9>@kB25ANv9tLp+2}TCxkc?D?Byb=p<mV}rWTYzOq^6Z9lqVJ|fWs#> zMUS1qkB7mZA%KxV1ygkqC`eJ1GcrhqWMmdAWEO*sD=tYaDoHI;C`qj-(c@tVWC&tp z5G+nj&d*DM1hXC}QLr-v^Du-kgt9Y)@i2rlL@+W4gPaOaZIHlXWDr6T1qTtxJCW=R zQ9KOM3^9xhf+#Bd@>5cI7-AXXco^at5|H$R0uK^|JPe5pNjwb63^I%iLYT>kkwE}t zqJB<dUb?=2QdVkm3Dj}=nfdyj{_xOeWRL<WggY4}gD^6%7pInlq*j2^0VGvHObjk5 z%FIg#rzVc{)Dq{M#NuK`24M|NaAJX|0SkhXHOPD<Aw~x7^wg4|)M9XiGcqV)GZ<n{ zUTTScXb>pdiGd7BtI!99Iyfu(<R_-27BMog<m4x&APj-&Kz0bk`__yM5)hl<euYF2 z*cTE|^TAmIIma+EaHgl0KoTb-g9wTb;Rb`k0354~3}R3fa7)1A)(~UDp?N|aNf9_o zArjV%3>?L&C14$l4B}|61q*{6%Tk<?U(TS&Aj%-dz`(%Bzy!(_42%qt3=9lx42%p? z3=9mc42+-*!@$TO%fP^(&%nsQ2olxW&cL{lfq{XEK@O^zfq{=fo`HdZ2cm#Mfk6>$ zs1kz=RI>#G6IhN*YYPLD5c4($7K9003``6R48jbY3?fLTaKTMc#$gI87E{C-I2k0c znxcZk6gDiTNHcIU$Y3=^l|hYx2^<`A8JHPZ85kJMwYD*^3vp~?;M~E$b%24}cQ*r1 zq|SB*UO(+^415O|__r|#Y-12Sz#wGBBFUn=jX_wFWgCMC!uwJTYzzzx@(cnD3Jj7A zN(|ZzDh!4UstjffYG5arK&*iV2LppSgF1r-10#a~gF1sIgBAl5gCv6-gEoT>12cm* d0}q2PgB}A5gFXWT0}BHqg8>60gCRJwi~telvjG4A diff --git a/HelloWorld/out/production/HelloWorld/app/Main.class b/HelloWorld/out/production/HelloWorld/app/Main.class deleted file mode 100644 index 7f08142a78c2a9baa548135a85d3c60c430d71c7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1192 zcmX^0Z`VEs1_l!bKQ0Dg22CyoEe3541|2R2T?Rca27Lwtb_PQZ1|u#8V+Ip;22(bN zP6jYwb7(pMW^gfZGMIs+%|V0(7lROkB|C!^JA*YN1Dj1|US^3MBLlOBW*8#_i*tTT zDkB5GPi9`KUukYqYEejHQcfx(gOE>ta$-(cVo@fD4;5r7$;d2bWZ?2iEGW?TP0Y-* zW@KP3E=epZVPp{3@X1OnOH8ZKFD^+;Pt^|wk=7tPcnXR#a}$dy!6J+dBG}Y1GO!fo z=a(=th{9!)Q}a^w0}_i;^Gd848Ms_4l2Z#xGV}9_*%@pY8CY@?GxHc3#5AJ88uW7# z^V0Q$ONuh{(!rLpBo?I?GcpKck!EDz3eGPrN=|jl1o@N`<PklP+j$s77)03_Y<U>$ z80;AtI5YBdQ}xm+a&y=j9C#QU8JyS|oOu{r7+e_{ghA>-enoO6BLlZbYEDkRLU?{r zP6|7N8xMm!g9jsn5Q^GhkPeVdo;(a*4Bk8pJ`AEf489C1j0_yGU}a>GgX&2vD9Fi7 zP6YW|-x0xvIsoEpc*rm^2!OOfME#SpQj<#<8935YOPq5Oi$Q^*p@|e&U_om}27ZJd zun;2ycY10`P--zaj2Ib|AQ1~O6&At}bMjJ4^h1MutQi@^K!&7M=z~H_-z~z|$0t8A zCAEl=fh8wDF$G}=Ob4<<ATG5=3Mf$0fg~VC29Dy?l90?2P)vzpb4eH@gA_y@Ejp}S zTtKN0q#qpSC`l9)3Ho4RNNOq0$S-GPV9QA?%}dT;P-GBd5C&%@W(G!3qF`WT5My9q z&}U#|U}RumVAa~rz_^itfq{uZoPmLX4J^pXAi==EzyoHpGDtE=F)%PNGDtJXFff5N zS2J)hFf%YP=xS|aU=m{9#=x?Jf%O0bo3FMI`!)s+?cEHVkvbv_Tp|oS+Zp(_G4N|| zV-P@CBF4bVz`(%EAi%)KAjZJYpur%(pu->twp0OPFw{~823-bO1~~>s1_1_H26+Yr z1||kY1_lNe21W)Y22KWL1{J7(jN$&-!61mRii?4Xfq_AkfrUW~Y&^_QstjsiKdFO# Gt^ojLo(p#X diff --git a/HelloWorld/out/production/HelloWorld/app/SecondScreenController.class b/HelloWorld/out/production/HelloWorld/app/SecondScreenController.class deleted file mode 100644 index 85d953f236d22e35f14211ed43530620573e3719..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1286 zcmX^0Z`VEs1_l!be=Y_=26Ygj!NH)(#h}HY&BdU@pv%sn$IhV7#lX&Bz{Oz5V8qT~ z%*DXPU;+{`WoIzsV&G*k2N4$R43_K+R*Vd6Hko;uC3cJq%o>_uj0`N!`6;Q44E#Qs zd8vM-xk;%-A&E&jsf-LlKKaRsIbn%KnIJw?kfkIevzU=V#wW3$KtDJ&IX^EYIJqb_ zHP1OeucRnHCnvSYnvsF0xID8YIRhfY$RMlXla*MOm{y^mT9%quqVJeol9`|93SwJ> zoWKeeW@M1Ut&EX@tst=|HLrw`K@_H{I5{;hRX+eMY|Y5P3g$C1h@i>`gH%~FGO(3r z=B4D9Bg>a0rl;x$gGg&e1}@i%<kSL?!;0A%K>XnR(xT*4w@gr2NMrY^9>`lf3_=XT zJPbArwu}s%8Tq-XdTAB8IqVE}JPh^>4(tq$JPb|@&WsGgAjN4F`e0{5oz2J~gdz%d zEXY6?b_Q1-1~&$GMg~C?6@K|CsXPoG44ym;UJTwy`a#}+c!r0;hrySJ!H+?hkwFS~ zJTWo|fK1lUNz6;v_fN`7O)h~tQa>|a-_su+9*hhe>8T~oIf=!^j10mWn&9w-Xafsc zGcxcaOacorGH|D-mIS31gTs)KK?#xqAew?piZb)kt)b@RrIzT22KiVsGKhf;NvqHY z1)siKgs+cJequ^$5hDXjPJUtv!Vs7ar~ydsw`OFJfY^i<&fsJw0W}|-+K>|=BLio8 zY6&F185u-Sd<Y2`Ye*P?qlb|}45|Wd30T}3VoW$RnTaDQ0>=$R0%THgY6(~eBZD}a zYr(=`$FdY><d-ujG6*mTGJpUR10yJ%F)%WSFfcIaGcYnRGB7Z(YHep=+{nPdz{DWR zz`(!;7UW?NV_;z50kc^d#2F+Q7#J8CBpIX_n82FnGB7i+GB7ZhYi(m-5@O!Qz_NpZ z^#B8#?`{V6NS*Br9Ddr{7&s3waBXAY-p0UlfPvSFMUq8#8v~yt%QgmngmqF3Yzzzx z{0ssN0t}K2LJZmrA`FHMq6}sXVqhnjK&*i}fq}uCL7G8^fssLgL7hRCL5_imL6Sj^ lL7qW@ftf*@frmknL5YEdL79PpfrWvQL4|>lK^5#ZH2@A-JZJy_ diff --git a/HelloWorld/out/production/HelloWorld/app/home.fxml b/HelloWorld/out/production/HelloWorld/app/home.fxml deleted file mode 100644 index ea6d937..0000000 --- a/HelloWorld/out/production/HelloWorld/app/home.fxml +++ /dev/null @@ -1,44 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> - -<?import javafx.scene.control.Button?> -<?import javafx.scene.control.Label?> -<?import javafx.scene.control.Menu?> -<?import javafx.scene.control.MenuBar?> -<?import javafx.scene.control.MenuItem?> -<?import javafx.scene.layout.BorderPane?> - -<BorderPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="600.0" prefWidth="800.0" xmlns="http://javafx.com/javafx/11.0.1" xmlns:fx="http://javafx.com/fxml/1" fx:controller="app.HomeController"> - <top> - <MenuBar BorderPane.alignment="CENTER"> - <menus> - <Menu mnemonicParsing="false" text="File"> - <items> - <MenuItem mnemonicParsing="false" text="Close" /> - </items> - </Menu> - <Menu mnemonicParsing="false" text="Edit"> - <items> - <MenuItem mnemonicParsing="false" text="Delete" /> - </items> - </Menu> - <Menu mnemonicParsing="false" text="Help"> - <items> - <MenuItem mnemonicParsing="false" text="About" /> - </items> - </Menu> - </menus> - </MenuBar> - </top> - <center> - <Label fx:id="middle" text="This is the starter text." BorderPane.alignment="CENTER" /> - </center> - <left> - <Button mnemonicParsing="false" onAction="#clickLeftButton" text="Left Button" BorderPane.alignment="CENTER" /> - </left> - <right> - <Button mnemonicParsing="false" onAction="#clickRightButton" text="Right Button" BorderPane.alignment="CENTER" /> - </right> - <bottom> - <Button mnemonicParsing="false" onAction="#switchScreen" text="Switch Screen" BorderPane.alignment="CENTER" /> - </bottom> -</BorderPane> diff --git a/HelloWorld/out/production/HelloWorld/app/secondScreen.fxml b/HelloWorld/out/production/HelloWorld/app/secondScreen.fxml deleted file mode 100644 index e2e3ee0..0000000 --- a/HelloWorld/out/production/HelloWorld/app/secondScreen.fxml +++ /dev/null @@ -1,19 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> - -<?import javafx.scene.control.Button?> -<?import javafx.scene.control.Label?> -<?import javafx.scene.control.SplitPane?> -<?import javafx.scene.layout.AnchorPane?> - -<SplitPane dividerPositions="0.5" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" orientation="VERTICAL" prefHeight="600.0" prefWidth="800.0" xmlns="http://javafx.com/javafx/11.0.1" xmlns:fx="http://javafx.com/fxml/1" fx:controller="app.SecondScreenController"> - <items> - <AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="100.0" prefWidth="160.0"> - <children> - <Label alignment="CENTER" contentDisplay="CENTER" layoutX="209.0" layoutY="81.0" prefHeight="196.0" prefWidth="598.0" text="This is the second screen!" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0" /> - </children></AnchorPane> - <AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="100.0" prefWidth="160.0"> - <children> - <Button layoutX="212.0" layoutY="53.0" mnemonicParsing="false" onAction="#switchScreen" prefHeight="296.0" prefWidth="798.0" text="Go Back!" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0" /> - </children></AnchorPane> - </items> -</SplitPane> -- GitLab