diff --git a/.gitattributes b/.gitattributes deleted file mode 100644 index dfe0770..0000000 --- a/.gitattributes +++ /dev/null @@ -1,2 +0,0 @@ -# Auto detect text files and perform LF normalization -* text=auto diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0000689 --- /dev/null +++ b/.gitignore @@ -0,0 +1,14 @@ +.gradle +/build/ + +# Ignore Gradle GUI config +gradle-app.setting + +# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored) +!gradle-wrapper.jar + +# Cache of project +.gradletasknamecache + +# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898 +# gradle/wrapper/gradle-wrapper.properties \ No newline at end of file diff --git a/.idea/$PRODUCT_WORKSPACE_FILE$ b/.idea/$PRODUCT_WORKSPACE_FILE$ new file mode 100644 index 0000000..79be354 --- /dev/null +++ b/.idea/$PRODUCT_WORKSPACE_FILE$ @@ -0,0 +1,19 @@ + + + + + + + 11 + + + + + + + + \ No newline at end of file diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..5c98b42 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,2 @@ +# Default ignored files +/workspace.xml \ No newline at end of file diff --git a/.idea/.name b/.idea/.name new file mode 100644 index 0000000..23ac6c2 --- /dev/null +++ b/.idea/.name @@ -0,0 +1 @@ +java-fx-samples \ No newline at end of file diff --git a/.idea/gradle.xml b/.idea/gradle.xml new file mode 100644 index 0000000..7e08e46 --- /dev/null +++ b/.idea/gradle.xml @@ -0,0 +1,19 @@ + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..d9897ee --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..35eb1dd --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/build.gradle b/build.gradle new file mode 100644 index 0000000..e07dd29 --- /dev/null +++ b/build.gradle @@ -0,0 +1,18 @@ +plugins { + id 'application' + id 'org.openjfx.javafxplugin' version '0.0.8' +} + +repositories { + mavenCentral() +} + +dependencies { +} + +javafx { + version = "13" + modules = [ 'javafx.controls', 'javafx.fxml', "javafx.swing" ] +} + +mainClassName = 'utils.Runner' \ No newline at end of file diff --git a/build.xml b/build.xml deleted file mode 100644 index 8760a88..0000000 --- a/build.xml +++ /dev/null @@ -1,53 +0,0 @@ - - Builds, tests, and runs the project java-fx-8-samples. - - - diff --git a/build/built-jar.properties b/build/built-jar.properties deleted file mode 100644 index cf0b973..0000000 --- a/build/built-jar.properties +++ /dev/null @@ -1,4 +0,0 @@ -#Fri, 09 Aug 2019 06:54:47 +0200 - - -D\:\\Git-Repos\\java-fx-8-samples= diff --git a/build/classes/animatedBall2/Main.class b/build/classes/animatedBall2/Main.class deleted file mode 100644 index 72989d5..0000000 Binary files a/build/classes/animatedBall2/Main.class and /dev/null differ diff --git a/build/classes/animatedball1/Main.class b/build/classes/animatedball1/Main.class deleted file mode 100644 index 29e294b..0000000 Binary files a/build/classes/animatedball1/Main.class and /dev/null differ diff --git a/build/classes/animatedball1/layoutController$AnimationTimer.class b/build/classes/animatedball1/layoutController$AnimationTimer.class deleted file mode 100644 index 226acab..0000000 Binary files a/build/classes/animatedball1/layoutController$AnimationTimer.class and /dev/null differ diff --git a/build/classes/animatedball1/layoutController.class b/build/classes/animatedball1/layoutController.class deleted file mode 100644 index 0bcedf4..0000000 Binary files a/build/classes/animatedball1/layoutController.class and /dev/null differ diff --git a/build/classes/basenconverter/FXMLDocumentController.class b/build/classes/basenconverter/FXMLDocumentController.class deleted file mode 100644 index 0cb7503..0000000 Binary files a/build/classes/basenconverter/FXMLDocumentController.class and /dev/null differ diff --git a/build/classes/basenconverter/Main.class b/build/classes/basenconverter/Main.class deleted file mode 100644 index c061f79..0000000 Binary files a/build/classes/basenconverter/Main.class and /dev/null differ diff --git a/build/classes/buegelperlen/CollisionDetection.class b/build/classes/buegelperlen/CollisionDetection.class deleted file mode 100644 index 77b9b0d..0000000 Binary files a/build/classes/buegelperlen/CollisionDetection.class and /dev/null differ diff --git a/build/classes/buegelperlen/Cursors.class b/build/classes/buegelperlen/Cursors.class deleted file mode 100644 index 01c0f86..0000000 Binary files a/build/classes/buegelperlen/Cursors.class and /dev/null differ diff --git a/build/classes/buegelperlen/GridRectangle.class b/build/classes/buegelperlen/GridRectangle.class deleted file mode 100644 index 5656c35..0000000 Binary files a/build/classes/buegelperlen/GridRectangle.class and /dev/null differ diff --git a/build/classes/buegelperlen/Layouts.class b/build/classes/buegelperlen/Layouts.class deleted file mode 100644 index b5e8b7d..0000000 Binary files a/build/classes/buegelperlen/Layouts.class and /dev/null differ diff --git a/build/classes/buegelperlen/Main.class b/build/classes/buegelperlen/Main.class deleted file mode 100644 index b5b5368..0000000 Binary files a/build/classes/buegelperlen/Main.class and /dev/null differ diff --git a/build/classes/changescene1/FXMLDocumentController.class b/build/classes/changescene1/FXMLDocumentController.class deleted file mode 100644 index 17e1b2b..0000000 Binary files a/build/classes/changescene1/FXMLDocumentController.class and /dev/null differ diff --git a/build/classes/changescene1/Main.class b/build/classes/changescene1/Main.class deleted file mode 100644 index 49b308d..0000000 Binary files a/build/classes/changescene1/Main.class and /dev/null differ diff --git a/build/classes/changescene1/Scene2Controller.class b/build/classes/changescene1/Scene2Controller.class deleted file mode 100644 index 860627f..0000000 Binary files a/build/classes/changescene1/Scene2Controller.class and /dev/null differ diff --git a/build/classes/changescene2/Main.class b/build/classes/changescene2/Main.class deleted file mode 100644 index f7ec1e3..0000000 Binary files a/build/classes/changescene2/Main.class and /dev/null differ diff --git a/build/classes/changescene2/Tools.class b/build/classes/changescene2/Tools.class deleted file mode 100644 index 6f5b560..0000000 Binary files a/build/classes/changescene2/Tools.class and /dev/null differ diff --git a/build/classes/changescene2/layout1Controller.class b/build/classes/changescene2/layout1Controller.class deleted file mode 100644 index 91e7d84..0000000 Binary files a/build/classes/changescene2/layout1Controller.class and /dev/null differ diff --git a/build/classes/changescene2/layout2Controller.class b/build/classes/changescene2/layout2Controller.class deleted file mode 100644 index c36e37f..0000000 Binary files a/build/classes/changescene2/layout2Controller.class and /dev/null differ diff --git a/build/classes/chatspammer/LayoutController$MyLoop.class b/build/classes/chatspammer/LayoutController$MyLoop.class deleted file mode 100644 index 26124e8..0000000 Binary files a/build/classes/chatspammer/LayoutController$MyLoop.class and /dev/null differ diff --git a/build/classes/chatspammer/LayoutController.class b/build/classes/chatspammer/LayoutController.class deleted file mode 100644 index 4173ad2..0000000 Binary files a/build/classes/chatspammer/LayoutController.class and /dev/null differ diff --git a/build/classes/chatspammer/Main.class b/build/classes/chatspammer/Main.class deleted file mode 100644 index 6da576d..0000000 Binary files a/build/classes/chatspammer/Main.class and /dev/null differ diff --git a/build/classes/circlegenerator/FXMLDocumentController.class b/build/classes/circlegenerator/FXMLDocumentController.class deleted file mode 100644 index a542810..0000000 Binary files a/build/classes/circlegenerator/FXMLDocumentController.class and /dev/null differ diff --git a/build/classes/circlegenerator/Main.class b/build/classes/circlegenerator/Main.class deleted file mode 100644 index fdd7992..0000000 Binary files a/build/classes/circlegenerator/Main.class and /dev/null differ diff --git a/build/classes/collisiontest/Entity.class b/build/classes/collisiontest/Entity.class deleted file mode 100644 index 1e3db3c..0000000 Binary files a/build/classes/collisiontest/Entity.class and /dev/null differ diff --git a/build/classes/collisiontest/FXMLDocumentController.class b/build/classes/collisiontest/FXMLDocumentController.class deleted file mode 100644 index e6cf9dd..0000000 Binary files a/build/classes/collisiontest/FXMLDocumentController.class and /dev/null differ diff --git a/build/classes/collisiontest/Main.class b/build/classes/collisiontest/Main.class deleted file mode 100644 index 8d39ebc..0000000 Binary files a/build/classes/collisiontest/Main.class and /dev/null differ diff --git a/build/classes/colorshooter/AniTimer.class b/build/classes/colorshooter/AniTimer.class deleted file mode 100644 index 25bb39b..0000000 Binary files a/build/classes/colorshooter/AniTimer.class and /dev/null differ diff --git a/build/classes/colorshooter/FlyingTile.class b/build/classes/colorshooter/FlyingTile.class deleted file mode 100644 index daf47d2..0000000 Binary files a/build/classes/colorshooter/FlyingTile.class and /dev/null differ diff --git a/build/classes/colorshooter/Main.class b/build/classes/colorshooter/Main.class deleted file mode 100644 index 5f8fa6c..0000000 Binary files a/build/classes/colorshooter/Main.class and /dev/null differ diff --git a/build/classes/colorshooter/Structure.class b/build/classes/colorshooter/Structure.class deleted file mode 100644 index 6441217..0000000 Binary files a/build/classes/colorshooter/Structure.class and /dev/null differ diff --git a/build/classes/cubedemo/GraphicalCube.class b/build/classes/cubedemo/GraphicalCube.class deleted file mode 100644 index 8ae0c79..0000000 Binary files a/build/classes/cubedemo/GraphicalCube.class and /dev/null differ diff --git a/build/classes/cubedemo/Main.class b/build/classes/cubedemo/Main.class deleted file mode 100644 index b530184..0000000 Binary files a/build/classes/cubedemo/Main.class and /dev/null differ diff --git a/build/classes/easyscreenshotter/FXMLDocumentController.class b/build/classes/easyscreenshotter/FXMLDocumentController.class deleted file mode 100644 index 2e93a5a..0000000 Binary files a/build/classes/easyscreenshotter/FXMLDocumentController.class and /dev/null differ diff --git a/build/classes/easyscreenshotter/Main.class b/build/classes/easyscreenshotter/Main.class deleted file mode 100644 index 173fa74..0000000 Binary files a/build/classes/easyscreenshotter/Main.class and /dev/null differ diff --git a/build/classes/grafischerwuerfel/FXMLDocumentController.class b/build/classes/grafischerwuerfel/FXMLDocumentController.class deleted file mode 100644 index 804ec37..0000000 Binary files a/build/classes/grafischerwuerfel/FXMLDocumentController.class and /dev/null differ diff --git a/build/classes/grafischerwuerfel/Main.class b/build/classes/grafischerwuerfel/Main.class deleted file mode 100644 index 09a847f..0000000 Binary files a/build/classes/grafischerwuerfel/Main.class and /dev/null differ diff --git a/build/classes/ipv4generator/Main.class b/build/classes/ipv4generator/Main.class deleted file mode 100644 index b4281e7..0000000 Binary files a/build/classes/ipv4generator/Main.class and /dev/null differ diff --git a/build/classes/ipv4generator/layoutController.class b/build/classes/ipv4generator/layoutController.class deleted file mode 100644 index 77d7d39..0000000 Binary files a/build/classes/ipv4generator/layoutController.class and /dev/null differ diff --git a/build/classes/listviewtest1/Main.class b/build/classes/listviewtest1/Main.class deleted file mode 100644 index 1e18630..0000000 Binary files a/build/classes/listviewtest1/Main.class and /dev/null differ diff --git a/build/classes/listviewtest2/FXMLDocumentController.class b/build/classes/listviewtest2/FXMLDocumentController.class deleted file mode 100644 index db79299..0000000 Binary files a/build/classes/listviewtest2/FXMLDocumentController.class and /dev/null differ diff --git a/build/classes/listviewtest2/Main.class b/build/classes/listviewtest2/Main.class deleted file mode 100644 index d291ea7..0000000 Binary files a/build/classes/listviewtest2/Main.class and /dev/null differ diff --git a/build/classes/moviedatabase/AddLayoutController.class b/build/classes/moviedatabase/AddLayoutController.class deleted file mode 100644 index 1ec8825..0000000 Binary files a/build/classes/moviedatabase/AddLayoutController.class and /dev/null differ diff --git a/build/classes/moviedatabase/Item.class b/build/classes/moviedatabase/Item.class deleted file mode 100644 index b367681..0000000 Binary files a/build/classes/moviedatabase/Item.class and /dev/null differ diff --git a/build/classes/moviedatabase/LayoutController.class b/build/classes/moviedatabase/LayoutController.class deleted file mode 100644 index fe1709a..0000000 Binary files a/build/classes/moviedatabase/LayoutController.class and /dev/null differ diff --git a/build/classes/moviedatabase/Main.class b/build/classes/moviedatabase/Main.class deleted file mode 100644 index 9a573ba..0000000 Binary files a/build/classes/moviedatabase/Main.class and /dev/null differ diff --git a/build/classes/multiplewindows/FXML1Controller.class b/build/classes/multiplewindows/FXML1Controller.class deleted file mode 100644 index 39fb479..0000000 Binary files a/build/classes/multiplewindows/FXML1Controller.class and /dev/null differ diff --git a/build/classes/multiplewindows/Main.class b/build/classes/multiplewindows/Main.class deleted file mode 100644 index ca694c8..0000000 Binary files a/build/classes/multiplewindows/Main.class and /dev/null differ diff --git a/build/classes/multiplewindows/NewFXMain$1.class b/build/classes/multiplewindows/NewFXMain$1.class deleted file mode 100644 index 41ecb27..0000000 Binary files a/build/classes/multiplewindows/NewFXMain$1.class and /dev/null differ diff --git a/build/classes/multiplewindows/NewFXMain.class b/build/classes/multiplewindows/NewFXMain.class deleted file mode 100644 index 8e71adf..0000000 Binary files a/build/classes/multiplewindows/NewFXMain.class and /dev/null differ diff --git a/build/classes/mycookieclicker/FXMLDocumentController$MyAnimation.class b/build/classes/mycookieclicker/FXMLDocumentController$MyAnimation.class deleted file mode 100644 index 6a436ae..0000000 Binary files a/build/classes/mycookieclicker/FXMLDocumentController$MyAnimation.class and /dev/null differ diff --git a/build/classes/mycookieclicker/FXMLDocumentController.class b/build/classes/mycookieclicker/FXMLDocumentController.class deleted file mode 100644 index e2dc5ea..0000000 Binary files a/build/classes/mycookieclicker/FXMLDocumentController.class and /dev/null differ diff --git a/build/classes/mycookieclicker/Main.class b/build/classes/mycookieclicker/Main.class deleted file mode 100644 index c8c2360..0000000 Binary files a/build/classes/mycookieclicker/Main.class and /dev/null differ diff --git a/build/classes/progressbars/FXMLDocumentController$1.class b/build/classes/progressbars/FXMLDocumentController$1.class deleted file mode 100644 index 0a7b447..0000000 Binary files a/build/classes/progressbars/FXMLDocumentController$1.class and /dev/null differ diff --git a/build/classes/progressbars/FXMLDocumentController$2.class b/build/classes/progressbars/FXMLDocumentController$2.class deleted file mode 100644 index 3a42ba1..0000000 Binary files a/build/classes/progressbars/FXMLDocumentController$2.class and /dev/null differ diff --git a/build/classes/progressbars/FXMLDocumentController.class b/build/classes/progressbars/FXMLDocumentController.class deleted file mode 100644 index 1377db1..0000000 Binary files a/build/classes/progressbars/FXMLDocumentController.class and /dev/null differ diff --git a/build/classes/progressbars/Main.class b/build/classes/progressbars/Main.class deleted file mode 100644 index 46bfd70..0000000 Binary files a/build/classes/progressbars/Main.class and /dev/null differ diff --git a/build/classes/randomwordgenfinder/LayoutController.class b/build/classes/randomwordgenfinder/LayoutController.class deleted file mode 100644 index 6512a0c..0000000 Binary files a/build/classes/randomwordgenfinder/LayoutController.class and /dev/null differ diff --git a/build/classes/randomwordgenfinder/Main.class b/build/classes/randomwordgenfinder/Main.class deleted file mode 100644 index 9c60f9a..0000000 Binary files a/build/classes/randomwordgenfinder/Main.class and /dev/null differ diff --git a/build/classes/simonlightgame/LayoutController.class b/build/classes/simonlightgame/LayoutController.class deleted file mode 100644 index fd96bd9..0000000 Binary files a/build/classes/simonlightgame/LayoutController.class and /dev/null differ diff --git a/build/classes/simonlightgame/Main.class b/build/classes/simonlightgame/Main.class deleted file mode 100644 index af8d038..0000000 Binary files a/build/classes/simonlightgame/Main.class and /dev/null differ diff --git a/build/classes/simonlightgame/Timer.class b/build/classes/simonlightgame/Timer.class deleted file mode 100644 index 3231f3f..0000000 Binary files a/build/classes/simonlightgame/Timer.class and /dev/null differ diff --git a/build/classes/steganography/FXMLDocumentController.class b/build/classes/steganography/FXMLDocumentController.class deleted file mode 100644 index da7425f..0000000 Binary files a/build/classes/steganography/FXMLDocumentController.class and /dev/null differ diff --git a/build/classes/steganography/Main.class b/build/classes/steganography/Main.class deleted file mode 100644 index ce762cc..0000000 Binary files a/build/classes/steganography/Main.class and /dev/null differ diff --git a/build/classes/steganography/SystemCheck.class b/build/classes/steganography/SystemCheck.class deleted file mode 100644 index 0aa83f0..0000000 Binary files a/build/classes/steganography/SystemCheck.class and /dev/null differ diff --git a/build/classes/taschenrechnerkomma/FXMLDocumentController.class b/build/classes/taschenrechnerkomma/FXMLDocumentController.class deleted file mode 100644 index 1ea9c86..0000000 Binary files a/build/classes/taschenrechnerkomma/FXMLDocumentController.class and /dev/null differ diff --git a/build/classes/taschenrechnerkomma/Main.class b/build/classes/taschenrechnerkomma/Main.class deleted file mode 100644 index 7b2dd68..0000000 Binary files a/build/classes/taschenrechnerkomma/Main.class and /dev/null differ diff --git a/build/classes/texteditor/AboutController.class b/build/classes/texteditor/AboutController.class deleted file mode 100644 index 265b863..0000000 Binary files a/build/classes/texteditor/AboutController.class and /dev/null differ diff --git a/build/classes/texteditor/FXMLDocumentController.class b/build/classes/texteditor/FXMLDocumentController.class deleted file mode 100644 index e1d36f3..0000000 Binary files a/build/classes/texteditor/FXMLDocumentController.class and /dev/null differ diff --git a/build/classes/texteditor/Main.class b/build/classes/texteditor/Main.class deleted file mode 100644 index 2cad10d..0000000 Binary files a/build/classes/texteditor/Main.class and /dev/null differ diff --git a/build/classes/texteditor/MainAbout.class b/build/classes/texteditor/MainAbout.class deleted file mode 100644 index 6b699aa..0000000 Binary files a/build/classes/texteditor/MainAbout.class and /dev/null differ diff --git a/build/classes/trackcoursor/Main.class b/build/classes/trackcoursor/Main.class deleted file mode 100644 index 9c7e29a..0000000 Binary files a/build/classes/trackcoursor/Main.class and /dev/null differ diff --git a/build/classes/trackcoursor/layoutController$KeyHandler.class b/build/classes/trackcoursor/layoutController$KeyHandler.class deleted file mode 100644 index 2159fe6..0000000 Binary files a/build/classes/trackcoursor/layoutController$KeyHandler.class and /dev/null differ diff --git a/build/classes/trackcoursor/layoutController$MyAnimTimer.class b/build/classes/trackcoursor/layoutController$MyAnimTimer.class deleted file mode 100644 index a2314cc..0000000 Binary files a/build/classes/trackcoursor/layoutController$MyAnimTimer.class and /dev/null differ diff --git a/build/classes/trackcoursor/layoutController.class b/build/classes/trackcoursor/layoutController.class deleted file mode 100644 index 84c2928..0000000 Binary files a/build/classes/trackcoursor/layoutController.class and /dev/null differ diff --git a/build/classes/unicodeemojitest/FXMLDocumentController.class b/build/classes/unicodeemojitest/FXMLDocumentController.class deleted file mode 100644 index 23838de..0000000 Binary files a/build/classes/unicodeemojitest/FXMLDocumentController.class and /dev/null differ diff --git a/build/classes/unicodeemojitest/Main.class b/build/classes/unicodeemojitest/Main.class deleted file mode 100644 index 35e7339..0000000 Binary files a/build/classes/unicodeemojitest/Main.class and /dev/null differ diff --git a/build/classes/utils/JFXUtil.class b/build/classes/utils/JFXUtil.class deleted file mode 100644 index 5674971..0000000 Binary files a/build/classes/utils/JFXUtil.class and /dev/null differ diff --git a/build/classes/utils/Runner.class b/build/classes/utils/Runner.class deleted file mode 100644 index 3167f8e..0000000 Binary files a/build/classes/utils/Runner.class and /dev/null differ diff --git a/dist/java-fx-8-samples.html b/dist/java-fx-8-samples.html deleted file mode 100644 index 5497a7a..0000000 --- a/dist/java-fx-8-samples.html +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - -

Test page for java-fx-8-samples

- Webstart: click to launch this app as webstart


- - -
- diff --git a/dist/java-fx-8-samples.jar b/dist/java-fx-8-samples.jar deleted file mode 100644 index a093ab3..0000000 Binary files a/dist/java-fx-8-samples.jar and /dev/null differ diff --git a/dist/java-fx-8-samples.jnlp b/dist/java-fx-8-samples.jnlp deleted file mode 100644 index 51e1fc3..0000000 --- a/dist/java-fx-8-samples.jnlp +++ /dev/null @@ -1,15 +0,0 @@ - - - - java-fx-8-samples - mschw - null - - - - - - - - - diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar new file mode 100644 index 0000000..87b738c Binary files /dev/null and b/gradle/wrapper/gradle-wrapper.jar differ diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 0000000..44e7c4d --- /dev/null +++ b/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,5 @@ +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-5.2.1-bin.zip +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists diff --git a/gradlew b/gradlew new file mode 100644 index 0000000..af6708f --- /dev/null +++ b/gradlew @@ -0,0 +1,172 @@ +#!/usr/bin/env sh + +############################################################################## +## +## Gradle start up script for UN*X +## +############################################################################## + +# Attempt to set APP_HOME +# Resolve links: $0 may be a link +PRG="$0" +# Need this for relative symlinks. +while [ -h "$PRG" ] ; do + ls=`ls -ld "$PRG"` + link=`expr "$ls" : '.*-> \(.*\)$'` + if expr "$link" : '/.*' > /dev/null; then + PRG="$link" + else + PRG=`dirname "$PRG"`"/$link" + fi +done +SAVED="`pwd`" +cd "`dirname \"$PRG\"`/" >/dev/null +APP_HOME="`pwd -P`" +cd "$SAVED" >/dev/null + +APP_NAME="Gradle" +APP_BASE_NAME=`basename "$0"` + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS='"-Xmx64m"' + +# Use the maximum available, or set MAX_FD != -1 to use that value. +MAX_FD="maximum" + +warn () { + echo "$*" +} + +die () { + echo + echo "$*" + echo + exit 1 +} + +# OS specific support (must be 'true' or 'false'). +cygwin=false +msys=false +darwin=false +nonstop=false +case "`uname`" in + CYGWIN* ) + cygwin=true + ;; + Darwin* ) + darwin=true + ;; + MINGW* ) + msys=true + ;; + NONSTOP* ) + nonstop=true + ;; +esac + +CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar + +# Determine the Java command to use to start the JVM. +if [ -n "$JAVA_HOME" ] ; then + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD="$JAVA_HOME/jre/sh/java" + else + JAVACMD="$JAVA_HOME/bin/java" + fi + if [ ! -x "$JAVACMD" ] ; then + die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +else + JAVACMD="java" + which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." +fi + +# Increase the maximum file descriptors if we can. +if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then + MAX_FD_LIMIT=`ulimit -H -n` + if [ $? -eq 0 ] ; then + if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then + MAX_FD="$MAX_FD_LIMIT" + fi + ulimit -n $MAX_FD + if [ $? -ne 0 ] ; then + warn "Could not set maximum file descriptor limit: $MAX_FD" + fi + else + warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" + fi +fi + +# For Darwin, add options to specify how the application appears in the dock +if $darwin; then + GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" +fi + +# For Cygwin, switch paths to Windows format before running java +if $cygwin ; then + APP_HOME=`cygpath --path --mixed "$APP_HOME"` + CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` + JAVACMD=`cygpath --unix "$JAVACMD"` + + # We build the pattern for arguments to be converted via cygpath + ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` + SEP="" + for dir in $ROOTDIRSRAW ; do + ROOTDIRS="$ROOTDIRS$SEP$dir" + SEP="|" + done + OURCYGPATTERN="(^($ROOTDIRS))" + # Add a user-defined pattern to the cygpath arguments + if [ "$GRADLE_CYGPATTERN" != "" ] ; then + OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" + fi + # Now convert the arguments - kludge to limit ourselves to /bin/sh + i=0 + for arg in "$@" ; do + CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` + CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option + + if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition + eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` + else + eval `echo args$i`="\"$arg\"" + fi + i=$((i+1)) + done + case $i in + (0) set -- ;; + (1) set -- "$args0" ;; + (2) set -- "$args0" "$args1" ;; + (3) set -- "$args0" "$args1" "$args2" ;; + (4) set -- "$args0" "$args1" "$args2" "$args3" ;; + (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; + (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; + (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; + (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; + (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; + esac +fi + +# Escape application args +save () { + for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done + echo " " +} +APP_ARGS=$(save "$@") + +# Collect all arguments for the java command, following the shell quoting and substitution rules +eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS" + +# by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong +if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then + cd "$(dirname "$0")" +fi + +exec "$JAVACMD" "$@" diff --git a/gradlew.bat b/gradlew.bat new file mode 100644 index 0000000..6d57edc --- /dev/null +++ b/gradlew.bat @@ -0,0 +1,84 @@ +@if "%DEBUG%" == "" @echo off +@rem ########################################################################## +@rem +@rem Gradle startup script for Windows +@rem +@rem ########################################################################## + +@rem Set local scope for the variables with windows NT shell +if "%OS%"=="Windows_NT" setlocal + +set DIRNAME=%~dp0 +if "%DIRNAME%" == "" set DIRNAME=. +set APP_BASE_NAME=%~n0 +set APP_HOME=%DIRNAME% + +@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +set DEFAULT_JVM_OPTS="-Xmx64m" + +@rem Find java.exe +if defined JAVA_HOME goto findJavaFromJavaHome + +set JAVA_EXE=java.exe +%JAVA_EXE% -version >NUL 2>&1 +if "%ERRORLEVEL%" == "0" goto init + +echo. +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:findJavaFromJavaHome +set JAVA_HOME=%JAVA_HOME:"=% +set JAVA_EXE=%JAVA_HOME%/bin/java.exe + +if exist "%JAVA_EXE%" goto init + +echo. +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:init +@rem Get command-line arguments, handling Windows variants + +if not "%OS%" == "Windows_NT" goto win9xME_args + +:win9xME_args +@rem Slurp the command line arguments. +set CMD_LINE_ARGS= +set _SKIP=2 + +:win9xME_args_slurp +if "x%~1" == "x" goto execute + +set CMD_LINE_ARGS=%* + +:execute +@rem Setup the command line + +set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar + +@rem Execute Gradle +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% + +:end +@rem End local scope for the variables with windows NT shell +if "%ERRORLEVEL%"=="0" goto mainEnd + +:fail +rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of +rem the _cmd.exe /c_ return code! +if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 +exit /b 1 + +:mainEnd +if "%OS%"=="Windows_NT" endlocal + +:omega diff --git a/manifest.mf b/manifest.mf deleted file mode 100644 index 328e8e5..0000000 --- a/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/nbproject/build-impl.xml b/nbproject/build-impl.xml deleted file mode 100644 index e08ffc9..0000000 --- a/nbproject/build-impl.xml +++ /dev/null @@ -1,1797 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set platform.home - Must set platform.bootcp - Must set platform.java - Must set platform.javac - - The J2SE Platform is not correctly set up. - Your active platform is: ${platform.active}, but the corresponding property "platforms.${platform.active}.home" is not found in the project's properties files. - Either open the project in the IDE and setup the Platform with the same name or add it manually. - For example like this: - ant -Duser.properties.file=<path_to_property_file> jar (where you put the property "platforms.${platform.active}.home" in a .properties file) - or ant -Dplatforms.${platform.active}.home=<path_to_JDK_home> jar (where no properties file is used) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - ${platform.java} -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/nbproject/configs/Run_as_WebStart.properties b/nbproject/configs/Run_as_WebStart.properties deleted file mode 100644 index 670fff0..0000000 --- a/nbproject/configs/Run_as_WebStart.properties +++ /dev/null @@ -1,2 +0,0 @@ -# Do not modify this property in this configuration. It can be re-generated. -$label=Run as WebStart diff --git a/nbproject/configs/Run_in_Browser.properties b/nbproject/configs/Run_in_Browser.properties deleted file mode 100644 index f2a5a65..0000000 --- a/nbproject/configs/Run_in_Browser.properties +++ /dev/null @@ -1,2 +0,0 @@ -# Do not modify this property in this configuration. It can be re-generated. -$label=Run in Browser diff --git a/nbproject/genfiles.properties b/nbproject/genfiles.properties deleted file mode 100644 index db97b3d..0000000 --- a/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=3273e1d5 -build.xml.script.CRC32=e5df4ff6 -build.xml.stylesheet.CRC32=f85dc8f2@1.92.0.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=3273e1d5 -nbproject/build-impl.xml.script.CRC32=f312b000 -nbproject/build-impl.xml.stylesheet.CRC32=3a2fa800@1.92.0.48 diff --git a/nbproject/jfx-impl.xml b/nbproject/jfx-impl.xml deleted file mode 100644 index 6aeb313..0000000 --- a/nbproject/jfx-impl.xml +++ /dev/null @@ -1,4197 +0,0 @@ - - - - - JavaFX-specific Ant calls - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${cssfileslist} - - - - - - - - - - - - - - - - - - - - - - - - self.addMappedName( - (source.indexOf("jfxrt.jar") >= 0) || - (source.indexOf("deploy.jar") >= 0) || - (source.indexOf("javaws.jar") >= 0) || - (source.indexOf("plugin.jar") >= 0) - ? "" : source - ); - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/nbproject/private/configs/Run_as_WebStart.properties b/nbproject/private/configs/Run_as_WebStart.properties deleted file mode 100644 index 86ae865..0000000 --- a/nbproject/private/configs/Run_as_WebStart.properties +++ /dev/null @@ -1,2 +0,0 @@ -# Do not modify this property in this configuration. It can be re-generated. -javafx.run.as=webstart diff --git a/nbproject/private/configs/Run_in_Browser.properties b/nbproject/private/configs/Run_in_Browser.properties deleted file mode 100644 index f4e8549..0000000 --- a/nbproject/private/configs/Run_in_Browser.properties +++ /dev/null @@ -1,2 +0,0 @@ -# Do not modify this property in this configuration. It can be re-generated. -javafx.run.as=embedded diff --git a/nbproject/private/private.properties b/nbproject/private/private.properties deleted file mode 100644 index ac3fd92..0000000 --- a/nbproject/private/private.properties +++ /dev/null @@ -1,14 +0,0 @@ -auxiliary.org-netbeans-modules-projectapi.issue214819_5f_fx_5f_enabled=true -compile.on.save=true -do.depend=false -do.jar=true -do.jlink=false -# No need to modify this property unless customizing JavaFX Ant task infrastructure -endorsed.javafx.ant.classpath=. -javac.debug=true -javadoc.preview=true -javafx.run.as=standalone -javafx.run.inbrowser= -javafx.run.inbrowser.path=C:\\Program Files\\Internet Explorer\\iexplore.exe -jlink.strip=false -user.properties.file=C:\\Users\\mschw\\AppData\\Roaming\\NetBeans\\11.1\\build.properties diff --git a/nbproject/private/private.xml b/nbproject/private/private.xml deleted file mode 100644 index 6807a2b..0000000 --- a/nbproject/private/private.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/nbproject/private/retriever/catalog.xml b/nbproject/private/retriever/catalog.xml deleted file mode 100644 index e69de29..0000000 diff --git a/nbproject/project.properties b/nbproject/project.properties deleted file mode 100644 index 9ac76bf..0000000 --- a/nbproject/project.properties +++ /dev/null @@ -1,138 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -application.title=java-fx-8-samples -application.vendor=mschw -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -compile.on.save=true -compile.on.save.unsupported.javafx=true -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.modulepath=\ - ${run.modulepath} -debug.test.classpath=\ - ${run.test.classpath} -debug.test.modulepath=\ - ${run.test.modulepath} -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/java-fx-8-samples.jar -dist.javadoc.dir=${dist.dir}/javadoc -endorsed.classpath= -excludes= -includes=** -# Non-JavaFX jar file creation is deactivated in JavaFX 2.0+ projects -jar.archive.disabled=true -jar.compress=false -javac.classpath=\ - ${javafx.classpath.extension} -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.external.vm=false -javac.modulepath= -javac.processormodulepath= -javac.processorpath=\ - ${javac.classpath} -javac.source=1.8 -javac.target=1.8 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.modulepath=\ - ${javac.modulepath} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.html5=false -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -javafx.application.implementation.version=1.0 -javafx.binarycss=false -javafx.classpath.extension=\ - ${platforms.JDK_1.8.home}/jre/lib/javaws.jar:\ - ${platforms.JDK_1.8.home}/jre/lib/deploy.jar:\ - ${platforms.JDK_1.8.home}/jre/lib/plugin.jar -javafx.deploy.adddesktopshortcut=false -javafx.deploy.addstartmenushortcut=false -javafx.deploy.allowoffline=true -# If true, application update mode is set to 'background', if false, update mode is set to 'eager' -javafx.deploy.backgroundupdate=false -javafx.deploy.disable.proxy=false -javafx.deploy.embedJNLP=true -javafx.deploy.includeDT=true -javafx.deploy.installpermanently=false -javafx.deploy.permissionselevated=false -# Set true to prevent creation of temporary copy of deployment artifacts before each run (disables concurrent runs) -javafx.disable.concurrent.runs=false -# Set true to enable multiple concurrent runs of the same WebStart or Run-in-Browser project -javafx.enable.concurrent.external.runs=false -# This is a JavaFX project -javafx.enabled=true -javafx.fallback.class=com.javafx.main.NoJavaFXFallback -# Main class for JavaFX -javafx.main.class=utils.Runner -javafx.preloader.class= -# This project does not use Preloader -javafx.preloader.enabled=false -javafx.preloader.jar.filename= -javafx.preloader.jar.path= -javafx.preloader.project.path= -javafx.preloader.type=none -# Set true for GlassFish only. Rebases manifest classpaths of JARs in lib dir. Not usable with signed JARs. -javafx.rebase.libs=false -javafx.run.height=600 -javafx.run.width=800 -javafx.signing.blob=false -javafx.signing.enabled=false -javafx.signing.type=notsigned -jlink.launcher=false -jlink.launcher.name=java-fx-8-samples -# Pre-JavaFX 2.0 WebStart is deactivated in JavaFX 2.0+ projects -jnlp.enabled=false -# Main class for Java launcher -main.class=com.javafx.main.Main -# For improved security specify narrower Codebase manifest attribute to prevent RIAs from being repurposed -manifest.custom.codebase=* -# Specify Permissions manifest attribute to override default (choices: sandbox, all-permissions) -manifest.custom.permissions= -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -native.bundling.enabled=false -platform.active=JDK_1.8 -run.classpath=\ - ${dist.jar}:\ - ${javac.classpath}:\ - ${build.classes.dir} -run.modulepath=\ - ${javac.modulepath} -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -run.test.modulepath=\ - ${javac.test.modulepath} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/nbproject/project.xml b/nbproject/project.xml deleted file mode 100644 index 2b33cdc..0000000 --- a/nbproject/project.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - - - - - - - - - - - java-fx-8-samples - - - - - - - - - - diff --git a/settings.gradle b/settings.gradle new file mode 100644 index 0000000..c9b8b2e --- /dev/null +++ b/settings.gradle @@ -0,0 +1,2 @@ +rootProject.name = 'java-fx-samples' + diff --git a/src/animatedball1/layout.fxml b/src/animatedball1/layout.fxml deleted file mode 100644 index 02e0d04..0000000 --- a/src/animatedball1/layout.fxml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - -