diff options
Diffstat (limited to 'modules/ui-desktop')
| -rw-r--r-- | modules/ui-desktop/.classpath | 34 | ||||
| -rw-r--r-- | modules/ui-desktop/.project | 28 | ||||
| -rw-r--r-- | modules/ui-desktop/src/main/java/market/guess/ui/desktop/App.java | 26 |
3 files changed, 0 insertions, 88 deletions
diff --git a/modules/ui-desktop/.classpath b/modules/ui-desktop/.classpath deleted file mode 100644 index 7d4bc5c..0000000 --- a/modules/ui-desktop/.classpath +++ /dev/null | |||
| @@ -1,34 +0,0 @@ | |||
| 1 | <?xml version="1.0" encoding="UTF-8"?> | ||
| 2 | <classpath> | ||
| 3 | <!-- Defines your source folder --> | ||
| 4 | <classpathentry kind="src" output="bin/classes" path="src/main/java"> | ||
| 5 | <attributes> | ||
| 6 | <attribute name="optional" value="true"/> | ||
| 7 | </attributes> | ||
| 8 | </classpathentry> | ||
| 9 | <classpathentry kind="src" output="bin/test-classes" path="src/test/java"> | ||
| 10 | <attributes> | ||
| 11 | <attribute name="optional" value="true"/> | ||
| 12 | <attribute name="test" value="true"/> | ||
| 13 | </attributes> | ||
| 14 | </classpathentry> | ||
| 15 | <!-- Defines the standard Java System Library --> | ||
| 16 | <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> | ||
| 17 | <!-- Defines where compiled .class files go --> | ||
| 18 | <classpathentry kind="output" path="bin"/> | ||
| 19 | |||
| 20 | <!-- Required OpenJFX JARs explicitly placed on the Modulepath --> | ||
| 21 | <classpathentry kind="lib" path="/usr/share/openjfx/lib/javafx.base.jar"> | ||
| 22 | <attributes><attribute name="module" value="true"/></attributes> | ||
| 23 | </classpathentry> | ||
| 24 | <classpathentry kind="lib" path="/usr/share/openjfx/lib/javafx.controls.jar"> | ||
| 25 | <attributes><attribute name="module" value="true"/></attributes> | ||
| 26 | </classpathentry> | ||
| 27 | <classpathentry kind="lib" path="/usr/share/openjfx/lib/javafx.graphics.jar"> | ||
| 28 | <attributes><attribute name="module" value="true"/></attributes> | ||
| 29 | </classpathentry> | ||
| 30 | <classpathentry kind="lib" path="/usr/share/openjfx/lib/javafx.fxml.jar"> | ||
| 31 | <attributes><attribute name="module" value="true"/></attributes> | ||
| 32 | </classpathentry> | ||
| 33 | </classpath> | ||
| 34 | |||
diff --git a/modules/ui-desktop/.project b/modules/ui-desktop/.project deleted file mode 100644 index e421bbf..0000000 --- a/modules/ui-desktop/.project +++ /dev/null | |||
| @@ -1,28 +0,0 @@ | |||
| 1 | <?xml version="1.0" encoding="UTF-8"?> | ||
| 2 | <projectDescription> | ||
| 3 | <name>guess-market-ui-desktop</name> | ||
| 4 | <comment></comment> | ||
| 5 | <projects> | ||
| 6 | </projects> | ||
| 7 | <buildSpec> | ||
| 8 | <buildCommand> | ||
| 9 | <name>org.eclipse.jdt.core.javabuilder</name> | ||
| 10 | <arguments> | ||
| 11 | </arguments> | ||
| 12 | </buildCommand> | ||
| 13 | </buildSpec> | ||
| 14 | <natures> | ||
| 15 | <nature>org.eclipse.jdt.core.javanature</nature> | ||
| 16 | </natures> | ||
| 17 | <filteredResources> | ||
| 18 | <filter> | ||
| 19 | <id>1786044291088</id> | ||
| 20 | <name></name> | ||
| 21 | <type>30</type> | ||
| 22 | <matcher> | ||
| 23 | <id>org.eclipse.core.resources.regexFilterMatcher</id> | ||
| 24 | <arguments>node_modules|\.git|__CREATED_BY_JAVA_LANGUAGE_SERVER__</arguments> | ||
| 25 | </matcher> | ||
| 26 | </filter> | ||
| 27 | </filteredResources> | ||
| 28 | </projectDescription> | ||
diff --git a/modules/ui-desktop/src/main/java/market/guess/ui/desktop/App.java b/modules/ui-desktop/src/main/java/market/guess/ui/desktop/App.java deleted file mode 100644 index 698cdd7..0000000 --- a/modules/ui-desktop/src/main/java/market/guess/ui/desktop/App.java +++ /dev/null | |||
| @@ -1,26 +0,0 @@ | |||
| 1 | package market.guess.ui.desktop; | ||
| 2 | |||
| 3 | import javafx.application.Application; | ||
| 4 | import javafx.scene.Scene; | ||
| 5 | import javafx.scene.control.Label; | ||
| 6 | import javafx.scene.layout.StackPane; | ||
| 7 | import javafx.stage.Stage; | ||
| 8 | |||
| 9 | public class App extends Application { | ||
| 10 | public static void main(String[] args) { | ||
| 11 | launch(); | ||
| 12 | } | ||
| 13 | |||
| 14 | @Override | ||
| 15 | public void start(Stage stage) throws Exception { | ||
| 16 | var javaVersion = System.getProperty("java.version"); | ||
| 17 | var openjfxVersion = System.getProperty("javafx.version"); | ||
| 18 | |||
| 19 | var label = | ||
| 20 | new Label("Hello. JavaFX " + openjfxVersion + ", running on Java " + javaVersion + "."); | ||
| 21 | var scene = new Scene(new StackPane(label), 640, 480); | ||
| 22 | |||
| 23 | stage.setScene(scene); | ||
| 24 | stage.show(); | ||
| 25 | } | ||
| 26 | } | ||