This commit is contained in:
2026-01-05 11:24:36 -05:00
parent 44eaeda461
commit d724c734c3
12 changed files with 627 additions and 31 deletions

17
UiView/.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,17 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "java",
"name": "ApplicationView",
"request": "launch",
"mainClass": "edu.inventorym.ApplicationView",
"projectName": "UiView",
"vmArgs": " --module-path /home/sherwinp/workspace/javafx-sdk/lib --add-modules ALL-MODULE-PATH --enable-native-access=javafx.web,javafx.controls,javafx.media,javafx.graphics -Dcom.sun.management.jmxremote=false -Djava.awt.headless=true -XX:+DisableAttachMechanism"
},
]
}