(2020-02-25, 17:56)Stefan Frenz Wrote: Please try the following directory structure:
Code:../somePath/ldinsp.jar
../somePath/jdk-13.0.2 <<< therein should be Java13, among others a directory "lib"
../somePath/javafx-sdk-13.0.2 <<< therein should be jFX, among others a directory "lib"
then in a terminal the following should start LDInspector:
Code:cd /Library/Java/JavaVirtualMachines
jdk-13.0.2.jdk/Contents/Home/bin/java --module-path .:javafx-sdk-13.0.2/lib/ -m LDInspector/ldinsp.LDInspector
Thanks for testing!
Thanks! After revising the terminal commands (shown here for my own copy/paste purposes) to reflect actual directory structure, I get this error:
Code:
Exception in Application start method
Exception in thread "main" java.lang.RuntimeException: Exception in Application start method
at javafx.graphics/com.sun.javafx.application.LauncherImpl.launchApplication1(LauncherImpl.java:900)
at javafx.graphics/com.sun.javafx.application.LauncherImpl.lambda$launchApplication$2(LauncherImpl.java:195)
at java.base/java.lang.Thread.run(Thread.java:830)
Caused by: java.lang.Error: Unresolved compilation problem:
The method getSourceSize() is undefined for the type LDIData
at LDInspector/ldinsp.gui.view.LDIVItem.refresh(LDIVItem.java:324)
at LDInspector/ldinsp.gui.view.LDIVItem.onTabSelection(LDIVItem.java:271)
at LDInspector/ldinsp.gui.LDIGui.tabChanged(LDIGui.java:662)
at LDInspector/ldinsp.gui.LDIGui.<init>(LDIGui.java:292)
at LDInspector/ldinsp.LDIGuiStarter.start(LDIGuiStarter.java:33)
at javafx.graphics/com.sun.javafx.application.LauncherImpl.lambda$launchApplication1$9(LauncherImpl.java:846)
at javafx.graphics/com.sun.javafx.application.PlatformImpl.lambda$runAndWait$12(PlatformImpl.java:455)
at javafx.graphics/com.sun.javafx.application.PlatformImpl.lambda$runLater$10(PlatformImpl.java:428)
at java.base/java.security.AccessController.doPrivileged(AccessController.java:391)
at javafx.graphics/com.sun.javafx.application.PlatformImpl.lambda$runLater$11(PlatformImpl.java:427)
at javafx.graphics/com.sun.glass.ui.InvokeLaterDispatcher$Future.run(InvokeLaterDispatcher.java:96)