progress
@ -1,78 +0,0 @@
|
|||||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
||||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
|
||||||
<modelVersion>4.0.0</modelVersion>
|
|
||||||
<groupId>edu.slcc.asdv.caleb</groupId>
|
|
||||||
<artifactId>lab2-FX2-F22_part1</artifactId>
|
|
||||||
<version>1.0-SNAPSHOT</version>
|
|
||||||
<properties>
|
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
||||||
<maven.compiler.source>1.8</maven.compiler.source>
|
|
||||||
<maven.compiler.target>1.8</maven.compiler.target>
|
|
||||||
</properties>
|
|
||||||
<dependencies>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.openjfx</groupId>
|
|
||||||
<artifactId>javafx-controls</artifactId>
|
|
||||||
<version>13</version>
|
|
||||||
</dependency>
|
|
||||||
</dependencies>
|
|
||||||
<build>
|
|
||||||
<plugins>
|
|
||||||
<plugin>
|
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
|
||||||
<artifactId>maven-compiler-plugin</artifactId>
|
|
||||||
<version>3.8.0</version>
|
|
||||||
<configuration>
|
|
||||||
<release>11</release>
|
|
||||||
</configuration>
|
|
||||||
</plugin>
|
|
||||||
<plugin>
|
|
||||||
<groupId>org.openjfx</groupId>
|
|
||||||
<artifactId>javafx-maven-plugin</artifactId>
|
|
||||||
<version>0.0.4</version>
|
|
||||||
<configuration>
|
|
||||||
<mainClass>edu.slcc.asdv.caleb.lab2.fx2.f22_part1.App</mainClass>
|
|
||||||
</configuration>
|
|
||||||
<executions>
|
|
||||||
<execution>
|
|
||||||
<!-- Default configuration for running -->
|
|
||||||
<!-- Usage: mvn clean javafx:run -->
|
|
||||||
<id>default-cli</id>
|
|
||||||
</execution>
|
|
||||||
<execution>
|
|
||||||
<!-- Configuration for manual attach debugging -->
|
|
||||||
<!-- Usage: mvn clean javafx:run@debug -->
|
|
||||||
<id>debug</id>
|
|
||||||
<configuration>
|
|
||||||
<options>
|
|
||||||
<option>-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=localhost:8000</option>
|
|
||||||
</options>
|
|
||||||
</configuration>
|
|
||||||
</execution>
|
|
||||||
<execution>
|
|
||||||
<!-- Configuration for automatic IDE debugging -->
|
|
||||||
<id>ide-debug</id>
|
|
||||||
<configuration>
|
|
||||||
<options>
|
|
||||||
<option>-agentlib:jdwp=transport=dt_socket,server=n,address=${jpda.address}</option>
|
|
||||||
</options>
|
|
||||||
</configuration>
|
|
||||||
</execution>
|
|
||||||
<execution>
|
|
||||||
<!-- Configuration for automatic IDE profiling -->
|
|
||||||
<id>ide-profile</id>
|
|
||||||
<configuration>
|
|
||||||
<options>
|
|
||||||
<option>${profiler.jvmargs.arg1}</option>
|
|
||||||
<option>${profiler.jvmargs.arg2}</option>
|
|
||||||
<option>${profiler.jvmargs.arg3}</option>
|
|
||||||
<option>${profiler.jvmargs.arg4}</option>
|
|
||||||
<option>${profiler.jvmargs.arg5}</option>
|
|
||||||
</options>
|
|
||||||
</configuration>
|
|
||||||
</execution>
|
|
||||||
</executions>
|
|
||||||
</plugin>
|
|
||||||
</plugins>
|
|
||||||
</build>
|
|
||||||
</project>
|
|
@ -1,30 +0,0 @@
|
|||||||
package edu.slcc.asdv.caleb.lab2.fx2.f22_part1;
|
|
||||||
|
|
||||||
import javafx.application.Application;
|
|
||||||
import javafx.scene.Scene;
|
|
||||||
import javafx.scene.control.Label;
|
|
||||||
import javafx.scene.layout.StackPane;
|
|
||||||
import javafx.stage.Stage;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* JavaFX App
|
|
||||||
*/
|
|
||||||
public class App extends Application {
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void start(Stage stage) {
|
|
||||||
var javaVersion = SystemInfo.javaVersion();
|
|
||||||
var javafxVersion = SystemInfo.javafxVersion();
|
|
||||||
|
|
||||||
var label = new Label("Hello, JavaFX " + javafxVersion + ", running on Java " + javaVersion + ".");
|
|
||||||
var scene = new Scene(new StackPane(label), 640, 480);
|
|
||||||
stage.setScene(scene);
|
|
||||||
stage.show();
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void main(String[] args) {
|
|
||||||
launch();
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
@ -1,13 +0,0 @@
|
|||||||
package edu.slcc.asdv.caleb.lab2.fx2.f22_part1;
|
|
||||||
|
|
||||||
public class SystemInfo {
|
|
||||||
|
|
||||||
public static String javaVersion() {
|
|
||||||
return System.getProperty("java.version");
|
|
||||||
}
|
|
||||||
|
|
||||||
public static String javafxVersion() {
|
|
||||||
return System.getProperty("javafx.version");
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
@ -1,4 +0,0 @@
|
|||||||
module edu.slcc.asdv.caleb.lab2.fx2.f22_part1 {
|
|
||||||
requires javafx.controls;
|
|
||||||
exports edu.slcc.asdv.caleb.lab2.fx2.f22_part1;
|
|
||||||
}
|
|
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/L1.gif
Executable file
After Width: | Height: | Size: 15 KiB |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/L10.gif
Executable file
After Width: | Height: | Size: 16 KiB |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/L11.gif
Executable file
After Width: | Height: | Size: 16 KiB |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/L12.gif
Executable file
After Width: | Height: | Size: 15 KiB |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/L13.gif
Executable file
After Width: | Height: | Size: 15 KiB |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/L14.gif
Executable file
After Width: | Height: | Size: 15 KiB |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/L15.gif
Executable file
After Width: | Height: | Size: 15 KiB |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/L16.gif
Executable file
After Width: | Height: | Size: 16 KiB |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/L17.gif
Executable file
After Width: | Height: | Size: 16 KiB |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/L18.gif
Executable file
After Width: | Height: | Size: 16 KiB |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/L19.gif
Executable file
After Width: | Height: | Size: 16 KiB |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/L2.gif
Executable file
After Width: | Height: | Size: 15 KiB |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/L20.gif
Executable file
After Width: | Height: | Size: 16 KiB |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/L21.gif
Executable file
After Width: | Height: | Size: 16 KiB |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/L22.gif
Executable file
After Width: | Height: | Size: 16 KiB |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/L23.gif
Executable file
After Width: | Height: | Size: 16 KiB |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/L24.gif
Executable file
After Width: | Height: | Size: 16 KiB |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/L25.gif
Executable file
After Width: | Height: | Size: 16 KiB |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/L26.gif
Executable file
After Width: | Height: | Size: 15 KiB |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/L27.gif
Executable file
After Width: | Height: | Size: 15 KiB |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/L28.gif
Executable file
After Width: | Height: | Size: 15 KiB |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/L29.gif
Executable file
After Width: | Height: | Size: 15 KiB |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/L3.gif
Executable file
After Width: | Height: | Size: 15 KiB |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/L30.gif
Executable file
After Width: | Height: | Size: 16 KiB |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/L31.gif
Executable file
After Width: | Height: | Size: 16 KiB |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/L32.gif
Executable file
After Width: | Height: | Size: 16 KiB |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/L33.gif
Executable file
After Width: | Height: | Size: 16 KiB |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/L34.gif
Executable file
After Width: | Height: | Size: 16 KiB |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/L35.gif
Executable file
After Width: | Height: | Size: 16 KiB |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/L36.gif
Executable file
After Width: | Height: | Size: 16 KiB |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/L37.gif
Executable file
After Width: | Height: | Size: 16 KiB |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/L38.gif
Executable file
After Width: | Height: | Size: 15 KiB |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/L39.gif
Executable file
After Width: | Height: | Size: 15 KiB |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/L4.gif
Executable file
After Width: | Height: | Size: 15 KiB |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/L40.gif
Executable file
After Width: | Height: | Size: 15 KiB |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/L41.gif
Executable file
After Width: | Height: | Size: 15 KiB |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/L42.gif
Executable file
After Width: | Height: | Size: 15 KiB |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/L43.gif
Executable file
After Width: | Height: | Size: 16 KiB |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/L44.gif
Executable file
After Width: | Height: | Size: 16 KiB |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/L45.gif
Executable file
After Width: | Height: | Size: 16 KiB |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/L46.gif
Executable file
After Width: | Height: | Size: 16 KiB |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/L47.gif
Executable file
After Width: | Height: | Size: 16 KiB |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/L48.gif
Executable file
After Width: | Height: | Size: 16 KiB |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/L49.gif
Executable file
After Width: | Height: | Size: 16 KiB |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/L5.gif
Executable file
After Width: | Height: | Size: 15 KiB |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/L50.gif
Executable file
After Width: | Height: | Size: 16 KiB |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/L51.gif
Executable file
After Width: | Height: | Size: 15 KiB |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/L52.gif
Executable file
After Width: | Height: | Size: 15 KiB |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/L6.gif
Executable file
After Width: | Height: | Size: 16 KiB |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/L7.gif
Executable file
After Width: | Height: | Size: 16 KiB |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/L8.gif
Executable file
After Width: | Height: | Size: 16 KiB |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/L9.gif
Executable file
After Width: | Height: | Size: 16 KiB |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/TICTACTOE.ico
Executable file
After Width: | Height: | Size: 2.2 KiB |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/ca.gif
Executable file
After Width: | Height: | Size: 3.0 KiB |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/caIcon.gif
Executable file
After Width: | Height: | Size: 110 B |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/canada.bmp
Executable file
After Width: | Height: | Size: 17 KiB |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/card.zip
Executable file
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/card/1.png
Executable file
After Width: | Height: | Size: 583 B |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/card/10.png
Executable file
After Width: | Height: | Size: 596 B |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/card/11.png
Executable file
After Width: | Height: | Size: 3.0 KiB |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/card/12.png
Executable file
After Width: | Height: | Size: 3.1 KiB |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/card/13.png
Executable file
After Width: | Height: | Size: 3.0 KiB |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/card/14.png
Executable file
After Width: | Height: | Size: 453 B |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/card/15.png
Executable file
After Width: | Height: | Size: 474 B |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/card/16.png
Executable file
After Width: | Height: | Size: 508 B |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/card/17.png
Executable file
After Width: | Height: | Size: 494 B |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/card/18.png
Executable file
After Width: | Height: | Size: 578 B |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/card/19.png
Executable file
After Width: | Height: | Size: 531 B |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/card/2.png
Executable file
After Width: | Height: | Size: 463 B |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/card/20.png
Executable file
After Width: | Height: | Size: 606 B |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/card/21.png
Executable file
After Width: | Height: | Size: 625 B |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/card/22.png
Executable file
After Width: | Height: | Size: 634 B |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/card/23.png
Executable file
After Width: | Height: | Size: 630 B |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/card/24.png
Executable file
After Width: | Height: | Size: 3.0 KiB |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/card/25.png
Executable file
After Width: | Height: | Size: 3.1 KiB |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/card/26.png
Executable file
After Width: | Height: | Size: 3.1 KiB |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/card/27.png
Executable file
After Width: | Height: | Size: 388 B |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/card/28.png
Executable file
After Width: | Height: | Size: 411 B |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/card/29.png
Executable file
After Width: | Height: | Size: 440 B |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/card/3.png
Executable file
After Width: | Height: | Size: 511 B |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/card/30.png
Executable file
After Width: | Height: | Size: 435 B |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/card/31.png
Executable file
After Width: | Height: | Size: 478 B |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/card/32.png
Executable file
After Width: | Height: | Size: 463 B |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/card/33.png
Executable file
After Width: | Height: | Size: 513 B |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/card/34.png
Executable file
After Width: | Height: | Size: 525 B |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/card/35.png
Executable file
After Width: | Height: | Size: 533 B |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/card/36.png
Executable file
After Width: | Height: | Size: 554 B |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/card/37.png
Executable file
After Width: | Height: | Size: 3.0 KiB |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/card/38.png
Executable file
After Width: | Height: | Size: 3.0 KiB |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/card/39.png
Executable file
After Width: | Height: | Size: 3.0 KiB |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/card/4.png
Executable file
After Width: | Height: | Size: 486 B |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/card/40.png
Executable file
After Width: | Height: | Size: 440 B |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/card/41.png
Executable file
After Width: | Height: | Size: 457 B |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/card/42.png
Executable file
After Width: | Height: | Size: 505 B |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/card/43.png
Executable file
After Width: | Height: | Size: 474 B |
BIN
Semester 3/Assignments/lab2_FX2_F22_part1/image/card/44.png
Executable file
After Width: | Height: | Size: 553 B |